aboutsummaryrefslogtreecommitdiffstats
path: root/Rakefile
diff options
context:
space:
mode:
authorSamuel Giddins <segiddins@segiddins.me>2016-02-25 23:05:43 -0600
committerSamuel Giddins <segiddins@segiddins.me>2016-02-25 23:05:43 -0600
commitd20f4fe9d63b024c10d5a6882dcedace9b2d71a9 (patch)
treebe6e3755af43ff52d7097277c3475db0e08a05a4 /Rakefile
parent4552992885035a4a22f49fc0dc7f55681463a194 (diff)
downloadbundler-d20f4fe9d63b024c10d5a6882dcedace9b2d71a9.tar.gz
[Travis] Test against RubyGems 2.6.0
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Rakefile b/Rakefile
index e22e3f69..f6308100 100644
--- a/Rakefile
+++ b/Rakefile
@@ -65,7 +65,7 @@ namespace :spec do
sh "sudo apt-get install graphviz -y 2>&1 | tail -n 2"
# Install the gems with a consistent version of RubyGems
- sh "gem update --system 2.5.2"
+ sh "gem update --system 2.6.0"
$LOAD_PATH.unshift("./spec")
require "support/rubygems_ext"
@@ -122,7 +122,7 @@ begin
rubyopt = ENV["RUBYOPT"]
# When editing this list, also edit .travis.yml!
branches = %w(master)
- releases = %w(v1.3.6 v1.3.7 v1.4.2 v1.5.3 v1.6.2 v1.7.2 v1.8.29 v2.0.14 v2.1.11 v2.2.5 v2.4.8 v2.5.2)
+ releases = %w(v1.3.6 v1.3.7 v1.4.2 v1.5.3 v1.6.2 v1.7.2 v1.8.29 v2.0.14 v2.1.11 v2.2.5 v2.4.8 v2.6.0)
(branches + releases).each do |rg|
desc "Run specs with Rubygems #{rg}"
RSpec::Core::RakeTask.new(rg) do |t|