summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2019-03-14 16:42:20 +0100
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2019-03-26 12:51:32 +0100
commitae7830749fab8d7a28a602eb32f6bbe8838d48f4 (patch)
tree5c99b6fc981bca1c156ae536b6d4d9acd9f4899f /Rakefile
parent6f39ea5b15d61e5bdf7915bc94d66c31b1242d15 (diff)
downloadbundler-ae7830749fab8d7a28a602eb32f6bbe8838d48f4.tar.gz
Bump to MRI 2.6.2
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile6
1 files changed, 2 insertions, 4 deletions
diff --git a/Rakefile b/Rakefile
index d64e9cc789..0f455f4652 100644
--- a/Rakefile
+++ b/Rakefile
@@ -77,11 +77,9 @@ namespace :spec do
# Install the gems with a consistent version of RubyGems
sh "gem update --system 3.0.3"
- # Fix incorrect default gem specifications on ruby 2.6.1. Can be removed
- # when 2.6.2 is released and we start testing against it
- if RUBY_VERSION == "2.6.1"
+ # Fix incorrect default etc gem specification file list on ruby 2.6.2.
+ if RUBY_VERSION == "2.6.2"
sh "gem install etc:1.0.1 --default"
- sh "gem install bundler:1.17.2 --default"
end
$LOAD_PATH.unshift("./spec")