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
  • Loading branch information
cipolleschi authored and facebook-github-bot committed Oct 5, 2023
1 parent fdbfc4a commit ce39931
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.3'
gem 'activesupport', '>= 6.1.7.3', '< 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'

1 comment on commit ce39931

@ntboot
Copy link

@ntboot ntboot commented on ce39931 Oct 9, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

尽快修复

Please sign in to comment.