Skip to content

Commit 229285b

Browse files
[macos] Adjust activesupport ruby gem version pinning (#8541)
1 parent acbe023 commit 229285b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

images/macos/provision/core/rubygem.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ source ~/utils/utils.sh
44
echo Updating RubyGems...
55
gem update --system
66

7+
# Temporarily install activesupport 7.0.8 due to compatibility issues with cocoapods https://github.com/CocoaPods/CocoaPods/issues/12081
8+
gem install activesupport -v 7.0.8
9+
710
gemsToInstall=$(get_toolset_value '.ruby.rubygems | .[]')
811
if [ -n "$gemsToInstall" ]; then
912
for gem in $gemsToInstall; do
@@ -12,7 +15,4 @@ if [ -n "$gemsToInstall" ]; then
1215
done
1316
fi
1417

15-
# Temporarily install activesupport 7.0.8 due to compatibility issues with cocoapods https://github.com/CocoaPods/CocoaPods/issues/12081
16-
gem install activesupport -v 7.0.8 && gem uninstall activesupport -v 7.1.0
17-
1818
invoke_tests "RubyGem"

0 commit comments

Comments
 (0)