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.

## Changelog:
[iOS][Fixed] - Set the max version of Active support to 7.0.8

Reviewed By: hoxyq

Differential Revision: D49949782

fbshipit-source-id: 278097502d3a416567cc8c0b90090fee4fb21503

# Conflicts:
#	Gemfile
  • Loading branch information
cipolleschi authored and huntie committed Oct 11, 2023
1 parent 355025d commit 785f91b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Expand Up @@ -4,4 +4,4 @@ source 'https://rubygems.org'
ruby ">= 2.6.10"

gem 'cocoapods', '~> 1.12'
gem 'activesupport', '>= 6.1.7.1'
gem 'activesupport', '>= 6.1.7.1', '< 7.1.0'
3 changes: 2 additions & 1 deletion packages/react-native/template/Gemfile
Expand Up @@ -3,4 +3,5 @@ source 'https://rubygems.org'
# You may use http://rbenv.org/ or https://rvm.io/ to install and use this version
ruby ">= 2.6.10"

gem 'cocoapods', '~> 1.12'
gem 'cocoapods', '~> 1.13'
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.12'
gem 'rexml'
gem 'activesupport', '>= 6.1.7.3', '< 7.1.0'

0 comments on commit 785f91b

Please sign in to comment.