diff options
author | Samuel Giddins <segiddins@segiddins.me> | 2017-12-26 10:51:59 +0700 |
---|---|---|
committer | Samuel Giddins <segiddins@segiddins.me> | 2017-12-26 10:51:59 +0700 |
commit | ec4e066f224b857f612dbe5502b04a8df49e40b5 (patch) | |
tree | 4db87d2587c28a5230c028eac821b36d665090f3 | |
parent | 7a66b8d837471afb84781253157ebd7d94442883 (diff) | |
download | bundler-ec4e066f224b857f612dbe5502b04a8df49e40b5.tar.gz |
[Travis] Test against latest RubyGems versionseg-travis-2-5
-rw-r--r-- | .travis.yml | 6 | ||||
-rw-r--r-- | Rakefile | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml index 582eb56c09..543df2bcda 100644 --- a/.travis.yml +++ b/.travis.yml @@ -36,7 +36,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.7.1 + - RGV=v2.7.4 matrix: include: @@ -53,9 +53,9 @@ matrix: env: RGV=master # 1.x mode (we want to keep stuff passing in 1.x mode for now) - rvm: 2.4.2 - env: RGV=v2.7.1 BUNDLER_SPEC_SUB_VERSION=1.98 + env: RGV=v2.7.4 BUNDLER_SPEC_SUB_VERSION=1.98 - rvm: 1.8.7 - env: RGV=v2.7.1 BUNDLER_SPEC_SUB_VERSION=1.98 + env: RGV=v2.7.4 BUNDLER_SPEC_SUB_VERSION=1.98 allow_failures: - rvm: ruby-head @@ -147,7 +147,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 v2.6.8 v2.6.14 v2.7.1] + 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 v2.6.8 v2.6.14 v2.7.4] (branches + releases).each do |rg| desc "Run specs with RubyGems #{rg}" RSpec::Core::RakeTask.new(rg) do |t| |