Skip to content

Commit a2b3631

Browse files
cipolleschifortmarek
authored andcommitted
Fix Gemfile, setting Active support to < 7.1.0 (#39828)
Summary: Pull Request resolved: #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
1 parent 287482e commit a2b3631

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ source 'https://rubygems.org'
44
ruby '>= 2.6.10'
55

66
gem 'cocoapods', '>= 1.11.3'
7+
gem 'activesupport', '>= 6.1.7.3', '< 7.1.0'

packages/rn-tester/Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ source 'https://rubygems.org'
33

44
gem 'cocoapods', '= 1.11.3'
55
gem 'rexml'
6+
gem 'activesupport', '>= 6.1.7.3', '< 7.1.0'

template/Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ source 'https://rubygems.org'
44
ruby '>= 2.6.10'
55

66
gem 'cocoapods', '>= 1.11.3'
7+
gem 'activesupport', '>= 6.1.7.3', '< 7.1.0'

0 commit comments

Comments
 (0)