summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2019-03-15 08:22:30 +0100
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2019-03-26 12:51:32 +0100
commitd5becd0acb738214351abb8c9f32e7c2c44a6923 (patch)
tree830e25d65be5c85ff7f4c5680106a4a641e95e8e
parentae7830749fab8d7a28a602eb32f6bbe8838d48f4 (diff)
downloadbundler-d5becd0acb738214351abb8c9f32e7c2c44a6923.tar.gz
Bump to MRI 2.5.4
MRI 2.5.4 now regressed and suffers from the same issue as 2.6.2 :S
-rw-r--r--.travis.yml4
-rw-r--r--Rakefile4
2 files changed, 4 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index 9970f59421..2c1b862c96 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -29,7 +29,7 @@ addons:
rvm:
- 2.6.2
- - 2.5.3
+ - 2.5.4
- 2.4.5
- 2.3.8
@@ -51,7 +51,7 @@ jobs:
script: rake rubocop
stage: linting
# Ruby 2.5, Rubygems 2.7
- - rvm: 2.5.3
+ - rvm: 2.5.4
env: RGV=v2.7.9
stage: test
# Ruby 2.4, Rubygems 2.6
diff --git a/Rakefile b/Rakefile
index 0f455f4652..35b39a579c 100644
--- a/Rakefile
+++ b/Rakefile
@@ -77,8 +77,8 @@ namespace :spec do
# Install the gems with a consistent version of RubyGems
sh "gem update --system 3.0.3"
- # Fix incorrect default etc gem specification file list on ruby 2.6.2.
- if RUBY_VERSION == "2.6.2"
+ # Fix incorrect default etc gem specification file list on ruby 2.6.2 and 2.5.4
+ if RUBY_VERSION == "2.6.2" || RUBY_VERSION == "2.5.4"
sh "gem install etc:1.0.1 --default"
end