Skip to content

Commit a1a220b

Browse files
committed
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 735d06c commit a1a220b

File tree

5 files changed

+627
-596
lines changed

5 files changed

+627
-596
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'

Gemfile.lock

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,22 @@ GEM
33
specs:
44
CFPropertyList (3.0.6)
55
rexml
6-
activesupport (7.0.6)
6+
activesupport (7.0.8)
77
concurrent-ruby (~> 1.0, >= 1.0.2)
88
i18n (>= 1.6, < 2)
99
minitest (>= 5.1)
1010
tzinfo (~> 2.0)
11-
addressable (2.8.4)
11+
addressable (2.8.5)
1212
public_suffix (>= 2.0.2, < 6.0)
1313
algoliasearch (1.27.5)
1414
httpclient (~> 2.8, >= 2.8.3)
1515
json (>= 1.5.1)
1616
atomos (0.1.3)
1717
claide (1.1.0)
18-
cocoapods (1.12.1)
18+
cocoapods (1.13.0)
1919
addressable (~> 2.8)
2020
claide (>= 1.0.2, < 2.0)
21-
cocoapods-core (= 1.12.1)
21+
cocoapods-core (= 1.13.0)
2222
cocoapods-deintegrate (>= 1.0.3, < 2.0)
2323
cocoapods-downloader (>= 1.6.0, < 2.0)
2424
cocoapods-plugins (>= 1.0.0, < 2.0)
@@ -32,8 +32,8 @@ GEM
3232
molinillo (~> 0.8.0)
3333
nap (~> 1.0)
3434
ruby-macho (>= 2.3.0, < 3.0)
35-
xcodeproj (>= 1.21.0, < 2.0)
36-
cocoapods-core (1.12.1)
35+
xcodeproj (>= 1.23.0, < 2.0)
36+
cocoapods-core (1.13.0)
3737
activesupport (>= 5.0, < 8)
3838
addressable (~> 2.8)
3939
algoliasearch (~> 1.0)
@@ -57,15 +57,15 @@ GEM
5757
escape (0.0.4)
5858
ethon (0.16.0)
5959
ffi (>= 1.15.0)
60-
ffi (1.15.5)
60+
ffi (1.16.3)
6161
fourflusher (2.3.1)
6262
fuzzy_match (2.0.4)
6363
gh_inspector (1.1.3)
6464
httpclient (2.8.3)
6565
i18n (1.14.1)
6666
concurrent-ruby (~> 1.0)
6767
json (2.6.3)
68-
minitest (5.19.0)
68+
minitest (5.20.0)
6969
molinillo (0.8.0)
7070
nanaimo (0.3.0)
7171
nap (1.1.0)
@@ -77,7 +77,7 @@ GEM
7777
ethon (>= 0.9.0)
7878
tzinfo (2.0.6)
7979
concurrent-ruby (~> 1.0)
80-
xcodeproj (1.22.0)
80+
xcodeproj (1.23.0)
8181
CFPropertyList (>= 2.3.3, < 4.0)
8282
atomos (~> 0.1.3)
8383
claide (>= 1.0.2, < 2.0)
@@ -89,10 +89,11 @@ PLATFORMS
8989
ruby
9090

9191
DEPENDENCIES
92+
activesupport (>= 6.1.7.3, < 7.1.0)
9293
cocoapods (>= 1.11.3)
9394

9495
RUBY VERSION
95-
ruby 2.7.5p203
96+
ruby 3.2.0p0
9697

9798
BUNDLED WITH
98-
2.3.11
99+
2.4.12

packages/rn-tester/Gemfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Gemfile
22
source 'https://rubygems.org'
33

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

0 commit comments

Comments
 (0)