summaryrefslogtreecommitdiff
path: root/Rakefile
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 /Rakefile
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
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile4
1 files changed, 2 insertions, 2 deletions
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