From fa4b44bf41259102fa77435e51640ad4400c8139 Mon Sep 17 00:00:00 2001 From: Riccardo Cipolleschi Date: Thu, 16 Jan 2025 02:57:24 -0800 Subject: [PATCH] Fix ruby (#48721) Summary: Following the suggestions [here](https://stackoverflow.com/questions/79360526/uninitialized-constant-activesupportloggerthreadsafelevellogger-nameerror), it seems that concurrent-ruby has been released tonight and it is bugged. Let's pin it to the right version. [iOS][Changed] - Pin 'concurrent-ruby' to a working version Pull Request resolved: https://github.com/facebook/react-native/pull/48721 Test Plan: GHA Reviewed By: robhogan Differential Revision: D68262719 Pulled By: cipolleschi fbshipit-source-id: fc6410e28cc96f9d3769d3082a77cac0a3efe6db --- Gemfile | 2 ++ packages/helloworld/Gemfile | 2 ++ packages/rn-tester/Gemfile | 2 ++ 3 files changed, 6 insertions(+) diff --git a/Gemfile b/Gemfile index 8e468b2c4e6681..e428357ec6f933 100644 --- a/Gemfile +++ b/Gemfile @@ -5,3 +5,5 @@ ruby ">= 2.6.10" gem 'cocoapods', '~> 1.13' gem 'activesupport', '>= 6.1.7.5', '< 7.1.0' +gem 'xcodeproj', '< 1.26.0' +gem 'concurrent-ruby', '< 1.3.4' diff --git a/packages/helloworld/Gemfile b/packages/helloworld/Gemfile index 6180ec4fafab31..7fba41b666d1f5 100644 --- a/packages/helloworld/Gemfile +++ b/packages/helloworld/Gemfile @@ -4,3 +4,5 @@ ruby ">= 2.6.10" gem 'cocoapods', '>= 1.13', '< 1.15' gem 'activesupport', '>= 6.1.7.5', '< 7.1.0' +gem 'xcodeproj', '< 1.26.0' +gem 'concurrent-ruby', '< 1.3.4' diff --git a/packages/rn-tester/Gemfile b/packages/rn-tester/Gemfile index 687d5db0dc63c4..733ff6bb61bc14 100644 --- a/packages/rn-tester/Gemfile +++ b/packages/rn-tester/Gemfile @@ -8,3 +8,5 @@ ruby ">= 2.6.10" gem 'cocoapods', '>= 1.13', '< 1.15' gem 'rexml' gem 'activesupport', '>= 6.1.7.5', '< 7.1.0' +gem 'xcodeproj', '< 1.26.0' +gem 'concurrent-ruby', '< 1.3.4'