summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2016-08-21 17:11:36 +0700
committerAndre Arko <andre@arko.net>2016-08-22 09:42:41 +0700
commitb78fa8fed1fb720467d03f89e10fa43797f93528 (patch)
treec041a68704dd13da8f6488f04323454d084eaa52
parent67a1bd3e14b67722f2249caa3bda86c8d2739def (diff)
downloadbundler-b78fa8fed1fb720467d03f89e10fa43797f93528.tar.gz
test against RubyGems 2.6.6
also stop testing RubyGems 2.4 on newer rubies ¯\_(ツ)_/¯
-rw-r--r--.travis.yml10
-rw-r--r--Rakefile2
2 files changed, 8 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index f8dd2dd7ca..0a9f7af7ee 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -43,12 +43,16 @@ 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.4
- - RGV=v2.4.8
+ - RGV=v2.6.6
matrix:
include:
- # Ruby 2.2, Rubygems 2.4.5 and up (included by RGV above)
+ # Ruby 2.3, Rubygems 2.5.1 and up
+ - rvm: 2.2
+ env: RGV=v2.5.2
+ # Ruby 2.2, Rubygems 2.4.5 and up
+ - rvm: 2.2
+ env: RGV=v2.4.8
# Ruby 2.1, Rubygems 2.2.2 and up
- rvm: 2.1
env: RGV=v2.2.5
diff --git a/Rakefile b/Rakefile
index 7c4a2eb0a4..e7b2a3a6ca 100644
--- a/Rakefile
+++ b/Rakefile
@@ -127,7 +127,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.4)
+ 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.6)
(branches + releases).each do |rg|
desc "Run specs with Rubygems #{rg}"
RSpec::Core::RakeTask.new(rg) do |t|