We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27dbee1 commit 5ef88f1Copy full SHA for 5ef88f1
ci/script/update_rubygems_and_install_bundler
@@ -2,7 +2,12 @@
2
set -e
3
source script/functions.sh
4
5
-if is_ruby_23_plus; then
+if is_ruby_31_plus; then
6
+ echo "Installing rubygems 3.3.6 / bundler 2.3.6"
7
+ yes | gem update --system '3.3.6'
8
+ yes | gem install bundler -v '2.3.6'
9
+elif is_ruby_23_plus; then
10
+ echo "Installing rubygems 3.2.22 / bundler 2.2.22"
11
yes | gem update --system '3.2.22'
12
yes | gem install bundler -v '2.2.22'
13
else
0 commit comments