mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
b1735bc593
Summary: Hey, This PR fixes compatibility with Ruby 3.4.0 as it removed some libraries from the standard library. When installing pods I encountered this error:  After adding those dependencies, the error is gone:  ## Changelog: [IOS] [FIXED] - Compatibility with Ruby 3.4.0 Pull Request resolved: https://github.com/facebook/react-native/pull/49293 Test Plan: Install pods on Ruby 3.4 Reviewed By: vzaidman Differential Revision: D69397346 Pulled By: cipolleschi fbshipit-source-id: 2e29c0529e5342b8d29f2d296bd11802cb5a2885
16 lines
420 B
Ruby
16 lines
420 B
Ruby
source 'https://rubygems.org'
|
|
|
|
# You may use http://rbenv.org/ or https://rvm.io/ to install and use this version
|
|
ruby ">= 2.6.10"
|
|
|
|
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'
|