Skip to content

Commit

Permalink
Fix Gemfile, setting Active support to < 7.1.0 (#39828)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
cipolleschi authored and fortmarek committed Oct 5, 2023
1 parent 287482e commit a2b3631
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions Gemfile
Expand Up @@ -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'
1 change: 1 addition & 0 deletions packages/rn-tester/Gemfile
Expand Up @@ -3,3 +3,4 @@ source 'https://rubygems.org'

gem 'cocoapods', '= 1.11.3'
gem 'rexml'
gem 'activesupport', '>= 6.1.7.3', '< 7.1.0'
1 change: 1 addition & 0 deletions template/Gemfile
Expand Up @@ -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'

0 comments on commit a2b3631

Please sign in to comment.