summary refs log tree commit
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2018-02-22 22:03:51 -0500
committereileencodes <eileencodes@gmail.com>2018-04-13 16:09:58 -0400
commit274d934f32cc08a550f9e37bfdced7e228b42196 (patch)
tree43ffbf14c2f233decf81595edf8da5e960437d12
parent617aac0fb89f25603afc2b6497fdc3333354aee5 (diff)
downloadrack-274d934f32cc08a550f9e37bfdced7e228b42196.tar.gz
Stick with a passing version of Rubygems and bundler
Rubygems 2.7.5 has a bug with JRuby and Bundler is being unstable
latelly so it is better to stick with a version we know tests are going
to pass.
-rw-r--r--.travis.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 4a9d28e2..8858cfc3 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -14,7 +14,8 @@ addons:
       - libfcgi-dev
 
 before_install:
-  - gem env version | grep '^\(2\|1.\(8\|9\|[0-9][0-9]\)\)' || gem update --system
+  - gem update --system 2.7.4
+  - gem install bundler
 
 script: bundle exec rake ci