From a2b363107561c7949ed6c157ae4893bbe2733b11 Mon Sep 17 00:00:00 2001 From: Riccardo Cipolleschi Date: Thu, 5 Oct 2023 04:42:30 -0700 Subject: [PATCH] Fix Gemfile, setting Active support to < 7.1.0 (#39828) Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/39828 Active Suppert released a new Gem which is incompatible with Cocoapods 1.13.0, the latest release, as they removed a method used by cocoapods. This fix ensures that we install compatible versions of the Gem. [iOS][Fixed] - Set the max version of Active support to 7.0.8 Reviewed By: hoxyq Differential Revision: D49949782 fbshipit-source-id: 278097502d3a416567cc8c0b90090fee4fb21503 --- Gemfile | 1 + packages/rn-tester/Gemfile | 1 + template/Gemfile | 1 + 3 files changed, 3 insertions(+) diff --git a/Gemfile b/Gemfile index 1142b1b209ae3a..3eaad0d74c62b3 100644 --- a/Gemfile +++ b/Gemfile @@ -4,3 +4,4 @@ source 'https://rubygems.org' ruby '>= 2.6.10' gem 'cocoapods', '>= 1.11.3' +gem 'activesupport', '>= 6.1.7.3', '< 7.1.0' diff --git a/packages/rn-tester/Gemfile b/packages/rn-tester/Gemfile index 7bb000655cb646..d06aa10de2d509 100644 --- a/packages/rn-tester/Gemfile +++ b/packages/rn-tester/Gemfile @@ -3,3 +3,4 @@ source 'https://rubygems.org' gem 'cocoapods', '= 1.11.3' gem 'rexml' +gem 'activesupport', '>= 6.1.7.3', '< 7.1.0' diff --git a/template/Gemfile b/template/Gemfile index 1142b1b209ae3a..3eaad0d74c62b3 100644 --- a/template/Gemfile +++ b/template/Gemfile @@ -4,3 +4,4 @@ source 'https://rubygems.org' ruby '>= 2.6.10' gem 'cocoapods', '>= 1.11.3' +gem 'activesupport', '>= 6.1.7.3', '< 7.1.0'