diff options
author | Andre Arko <andre@arko.net> | 2014-11-28 11:51:35 -0800 |
---|---|---|
committer | Andre Arko <andre@arko.net> | 2014-11-28 11:51:35 -0800 |
commit | 0e14283543b2639f5b6683482563f8555af289f3 (patch) | |
tree | 6483039c82507101eaeac9cb275b686ac60db508 | |
parent | 60b1c71c7986a7e0e9541282d07622b28a7998dd (diff) | |
download | bundler-0e14283543b2639f5b6683482563f8555af289f3.tar.gz |
test against the latest rubygems version
-rw-r--r-- | .travis.yml | 2 | ||||
-rw-r--r-- | Rakefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 1227a6ef9d..0bea94498f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -37,7 +37,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.4.0 + - RGV=v2.4.4 matrix: fast_finish: true @@ -112,7 +112,7 @@ begin rubyopt = ENV["RUBYOPT"] # When editing this list, also edit .travis.yml! branches = %w(master 2.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.2 v2.4.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.2 v2.4.4) (branches + releases).each do |rg| desc "Run specs with Rubygems #{rg}" RSpec::Core::RakeTask.new(rg) do |t| |