We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f8f2da commit cb46d88Copy full SHA for cb46d88
1 file changed
.travis.yml
@@ -1,8 +1,14 @@
1
language: ruby
2
cache: bundler
3
before_install:
4
- - gem update --system 2.7.7
5
- - gem install bundler -v 1.16.2
+ # rubygems 2.7.8 and greater include bundler
+ - |
6
+ rv="$(ruby -e 'STDOUT.write RUBY_VERSION')";
7
+ if [ "$rv" \< "2.3" ]; then gem update --system 2.7.10 --no-document
8
+ elif [ "$rv" \< "2.7" ]; then gem update --system --no-document --conservative
9
+ fi
10
+ - ruby -v && gem --version && bundle version
11
+
12
addons:
13
apt:
14
packages:
0 commit comments