summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2013-07-03 13:44:50 -0700
committerAndre Arko <andre@arko.net>2013-07-03 13:44:50 -0700
commit3ad0a8ded94689d16c1cd66dc152cba450e29542 (patch)
tree286663e2c78589d966f73e1a7ff3e5232bc530cd
parent8475ccb02431850d835b455d15ce57c6a9ea790e (diff)
downloadbundler-3ad0a8ded94689d16c1cd66dc152cba450e29542.tar.gz
fix travis and tasks to match
-rw-r--r--.travis.yml2
-rw-r--r--Rakefile3
2 files changed, 3 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 2611571c1f..a7ed8febe8 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -33,7 +33,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.0.2
+ - RGV=v2.0.4
matrix:
allow_failures:
# we want to know how we're doing with head, but not fail the build
diff --git a/Rakefile b/Rakefile
index 41f3207c98..34e26e6022 100644
--- a/Rakefile
+++ b/Rakefile
@@ -85,9 +85,10 @@ begin
system "sudo rm -rf #{File.expand_path('../tmp/sudo_gem_home', __FILE__)}"
end
+ # Rubygems specs by version
namespace :rubygems do
- # Rubygems specs by version
rubyopt = ENV["RUBYOPT"]
+ # When editing this list, also edit .travis.yml!
%w(master v1.3.6 v1.3.7 v1.4.2 v1.5.3 v1.6.2 v1.7.2 v1.8.25 v2.0.3).each do |rg|
desc "Run specs with Rubygems #{rg}"
RSpec::Core::RakeTask.new(rg) do |t|