From fe11e091c52d1690f8a24203a9b2731cc57d517b Mon Sep 17 00:00:00 2001 From: Riccardo Cipolleschi Date: Fri, 15 May 2026 10:40:28 +0100 Subject: [PATCH] Add nkf gem for Ruby 3.4 compatibility Ruby 3.4 removed `kconv` from the standard library. The `xcodeproj` gem (used by CocoaPods) depends on `kconv`, which is now provided by the `nkf` gem. Without it, `bundle exec pod install` fails with: LoadError - cannot load such file -- kconv --- template/Gemfile | 1 + 1 file changed, 1 insertion(+) diff --git a/template/Gemfile b/template/Gemfile index 6a4c5f17..51515233 100644 --- a/template/Gemfile +++ b/template/Gemfile @@ -14,3 +14,4 @@ gem 'bigdecimal' gem 'logger' gem 'benchmark' gem 'mutex_m' +gem 'nkf'