Skip to content

Commit 54af931

Browse files
committed
Pin activesupport properly
1 parent 2c67fb9 commit 54af931

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

.circleci/config.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,14 @@ jobs:
9797
- add-mapbox-submodules-key
9898
- macos/install-rosetta
9999
- run:
100-
name: bundle install
101-
command: bundle install # pin cocoapods to a working version(for more check a comment in Gemfile)
100+
name: Use activesupport 7.0.8 so that Cocoapods works
101+
command: |
102+
# activesupport was pinned because of Cocoapods being incompatible with active support 7.0.10,
103+
# more details here - https://github.com/CocoaPods/CocoaPods/issues/12081
104+
# allegedly, this issue is resolved in https://github.com/CocoaPods/CocoaPods/pull/12082,
105+
# pinning can be removed after the above fix is released
106+
gem uninstall activesupport --version '>= 7.0.8'
107+
gem install activesupport '7.0.8'
102108
- flutter/install_sdk_and_pub:
103109
version: 3.13.6
104110
app-dir: example

Gemfile

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
source "https://rubygems.org"
22

33
gem "fastlane"
4-
# activesupport was pinned because of Cocoapods being incompatible with active support 7.0.10,
5-
# more details here - https://github.com/CocoaPods/CocoaPods/issues/12081
6-
# allegedly, this issue is resolved in https://github.com/CocoaPods/CocoaPods/pull/12082,
7-
# pinning can be removed after the above fix is released
8-
gem 'activesupport', '7.0.8'
94

105
plugins_path = File.join(File.dirname(__FILE__), '.fastlane', 'Pluginfile')
116
eval_gemfile(plugins_path) if File.exist?(plugins_path)

0 commit comments

Comments
 (0)