Skip to content

Commit 51c9658

Browse files
fix: Add nkf and base64 to Gemfile for Ruby 3.4 compatibility (#55346)
Summary: Ruby 3.4 removed 'kconv' (which requires 'nkf') and 'base64' from the standard library. This commit adds them to the Gemfiles to fix 'pod install' failures on Ruby 3.4 environments. ## Changelog: [iOS][Fixed] - Add `nkf` and `base64` as ruby dependencies Pull Request resolved: #55346 Reviewed By: cortinico Differential Revision: D92147798 Pulled By: cipolleschi fbshipit-source-id: ac06369593df2b892d343f45d3c43795c079a461
1 parent 9e30498 commit 51c9658

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

packages/rn-tester/Gemfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,6 @@ gem 'bigdecimal'
1616
gem 'logger'
1717
gem 'benchmark'
1818
gem 'mutex_m'
19+
gem 'nkf'
20+
gem 'base64'
21+

private/helloworld/Gemfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,8 @@ gem 'bigdecimal'
1212
gem 'logger'
1313
gem 'benchmark'
1414
gem 'mutex_m'
15+
gem 'nkf'
16+
gem 'base64'
17+
1518
gem 'ffi', '>= 1.17.2'
1619
gem 'rexml', '>= 3.3.9'

0 commit comments

Comments
 (0)