summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Giddins <segiddins@segiddins.me>2016-02-28 00:40:21 -0600
committerSamuel Giddins <segiddins@segiddins.me>2016-02-28 00:40:21 -0600
commit94ad497b81bb05f8739f17e48d0eae88513304d2 (patch)
tree2d7bb0f8fff0455cc2345da397f707f8dded2879
parenta69ec8fd00947cd5428873055c30e25e662cf7d9 (diff)
downloadbundler-94ad497b81bb05f8739f17e48d0eae88513304d2.tar.gz
[Travis] Test against RubyGems 2.6.1seg-rubygems-2.6.1
-rw-r--r--.travis.yml2
-rw-r--r--Rakefile4
2 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index 0b6e02744f..9c7ca6ee1c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -39,7 +39,7 @@ env:
# We need to know if changes to rubygems will break bundler on release
- RGV=master
# Test the latest rubygems release with all of our supported rubies
- - RGV=v2.6.0
+ - RGV=v2.6.1
- RGV=v2.4.8
matrix:
diff --git a/Rakefile b/Rakefile
index f63081001b..647885265a 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.6.0"
+ sh "gem update --system 2.6.1"
$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.6.0)
+ 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.1)
(branches + releases).each do |rg|
desc "Run specs with Rubygems #{rg}"
RSpec::Core::RakeTask.new(rg) do |t|