aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.travis.yml20
-rw-r--r--Rakefile2
2 files changed, 11 insertions, 11 deletions
diff --git a/.travis.yml b/.travis.yml
index 6ed89e63..c6347cf5 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -28,7 +28,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.1.3
+ - RGV=v2.1.9
# Test the latest stable branch so we know the next minor will work
- RGV=2.1
matrix:
@@ -47,21 +47,21 @@ matrix:
env: RGV=master
# Alternate implementations
- rvm: jruby
- env: RGV=v2.1.5
+ env: RGV=v2.1.9
- rvm: rbx
- env: RGV=v2.1.5
+ env: RGV=v2.1.9
# Rubygems goes down to 2.0 on Ruby 2.0.0
- rvm: 2.0.0
- env: RGV=v2.1.5
+ env: RGV=v2.1.9
- rvm: 2.0.0
- env: RGV=v2.0.10
+ env: RGV=v2.0.12
# Rubygems goes down to 1.5.3 on Ruby 1.9.3
- rvm: 1.9.3
- env: RGV=v2.1.5
+ env: RGV=v2.1.9
- rvm: 1.9.3
- env: RGV=v2.0.10
+ env: RGV=v2.0.12
- rvm: 1.9.3
- env: RGV=v1.8.27
+ env: RGV=v1.8.28
- rvm: 1.9.3
env: RGV=v1.7.2
- rvm: 1.9.3
@@ -70,10 +70,10 @@ matrix:
env: RGV=v1.5.3
# We only want an overview of how 1.9.2 is doing
- rvm: 1.9.2
- env: RGV=v2.1.5
+ env: RGV=v2.1.9
# Rubygems goes down to 1.3.6 on Ruby 1.8.7
- rvm: 1.8.7
- env: RGV=v1.8.27
+ env: RGV=v1.8.28
- rvm: 1.8.7
env: RGV=v1.7.2
- rvm: 1.8.7
diff --git a/Rakefile b/Rakefile
index 3f213951..278a91e8 100644
--- a/Rakefile
+++ b/Rakefile
@@ -92,7 +92,7 @@ begin
rubyopt = ENV["RUBYOPT"]
# When editing this list, also edit .travis.yml!
branches = %w(master 2.1)
- releases = %w(v1.3.6 v1.3.7 v1.4.2 v1.5.3 v1.6.2 v1.7.2 v1.8.27 v2.0.10 v2.1.5)
+ releases = %w(v1.3.6 v1.3.7 v1.4.2 v1.5.3 v1.6.2 v1.7.2 v1.8.28 v2.0.12 v2.1.9)
(branches + releases).each do |rg|
desc "Run specs with Rubygems #{rg}"
RSpec::Core::RakeTask.new(rg) do |t|