diff --git a/Gemfile b/Gemfile index ba6ebadfc7d0c3..e9b4cc2be6d73c 100644 --- a/Gemfile +++ b/Gemfile @@ -7,3 +7,9 @@ gem 'cocoapods', '~> 1.13', '!= 1.15.0', '!= 1.15.1' gem 'activesupport', '>= 6.1.7.5', '< 7.1.0' gem 'xcodeproj', '< 1.26.0' gem 'concurrent-ruby', '<= 1.3.4' + +# Ruby 3.4.0 has removed some libraries from the standard library. +gem 'bigdecimal' +gem 'logger' +gem 'benchmark' +gem 'mutex_m' diff --git a/Gemfile.lock b/Gemfile.lock index 7801444199f7db..e304f828796867 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -14,6 +14,8 @@ GEM httpclient (~> 2.8, >= 2.8.3) json (>= 1.5.1) atomos (0.1.3) + benchmark (0.4.0) + bigdecimal (3.1.9) claide (1.1.0) cocoapods (1.14.2) addressable (~> 2.8) @@ -65,8 +67,10 @@ GEM i18n (1.14.1) concurrent-ruby (~> 1.0) json (2.6.3) + logger (1.6.5) minitest (5.20.0) molinillo (0.8.0) + mutex_m (0.3.0) nanaimo (0.3.0) nap (1.1.0) netrc (0.11.0) @@ -90,7 +94,13 @@ PLATFORMS DEPENDENCIES activesupport (>= 6.1.7.5, < 7.1.0) + benchmark + bigdecimal cocoapods (~> 1.13, != 1.15.1, != 1.15.0) + concurrent-ruby (<= 1.3.4) + logger + mutex_m + xcodeproj (< 1.26.0) RUBY VERSION ruby 3.2.0p0 diff --git a/packages/helloworld/Gemfile b/packages/helloworld/Gemfile index 8dc184ef41c93b..a8b58f4745a45a 100644 --- a/packages/helloworld/Gemfile +++ b/packages/helloworld/Gemfile @@ -6,3 +6,9 @@ gem 'cocoapods', '~> 1.13', '!= 1.15.0', '!= 1.15.1' gem 'activesupport', '>= 6.1.7.5', '< 7.1.0' gem 'xcodeproj', '< 1.26.0' gem 'concurrent-ruby', '<= 1.3.4' + +# Ruby 3.4.0 has removed some libraries from the standard library. +gem 'bigdecimal' +gem 'logger' +gem 'benchmark' +gem 'mutex_m' diff --git a/packages/helloworld/Gemfile.lock b/packages/helloworld/Gemfile.lock index dec3bd48850440..5c3e6edfbc1c4c 100644 --- a/packages/helloworld/Gemfile.lock +++ b/packages/helloworld/Gemfile.lock @@ -17,6 +17,8 @@ GEM json (>= 1.5.1) atomos (0.1.3) base64 (0.2.0) + benchmark (0.4.0) + bigdecimal (3.1.9) claide (1.1.0) cocoapods (1.15.2) addressable (~> 2.8) @@ -68,8 +70,10 @@ GEM i18n (1.14.5) concurrent-ruby (~> 1.0) json (2.7.2) + logger (1.6.5) minitest (5.25.1) molinillo (0.8.0) + mutex_m (0.3.0) nanaimo (0.3.0) nap (1.1.0) netrc (0.11.0) @@ -96,8 +100,12 @@ PLATFORMS DEPENDENCIES activesupport (>= 6.1.7.5, < 7.1.0) + benchmark + bigdecimal cocoapods (~> 1.13, != 1.15.1, != 1.15.0) concurrent-ruby (<= 1.3.4) + logger + mutex_m xcodeproj (< 1.26.0) RUBY VERSION diff --git a/packages/rn-tester/Gemfile b/packages/rn-tester/Gemfile index 7161e74ee6a700..03087ee0ccd9e2 100644 --- a/packages/rn-tester/Gemfile +++ b/packages/rn-tester/Gemfile @@ -10,3 +10,9 @@ gem 'rexml' gem 'activesupport', '>= 6.1.7.5', '< 7.1.0' gem 'xcodeproj', '< 1.26.0' gem 'concurrent-ruby', '<= 1.3.4' + +# Ruby 3.4.0 has removed some libraries from the standard library. +gem 'bigdecimal' +gem 'logger' +gem 'benchmark' +gem 'mutex_m'