summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2014-03-29 15:31:29 +0800
committerAndre Arko <andre@arko.net>2014-03-31 10:49:41 +0800
commit9c2c115de44037c6469e39d66487ff865ec188d9 (patch)
treee1cc67563b5b252b8b86890764a7c86ade3f3eab
parent1630a3b58ba4674492566313f71df5d53ea233a8 (diff)
downloadbundler-9c2c115de44037c6469e39d66487ff865ec188d9.tar.gz
rubygems 2.2.2 is out now
-rw-r--r--.travis.yml6
-rw-r--r--Rakefile2
2 files changed, 4 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index 0755f3aab6..f80faeb588 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -32,7 +32,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.2.1
+ - RGV=v2.2.2
# Test the latest stable branch so we know the next minor will work
- RGV=2.2
matrix:
@@ -51,9 +51,9 @@ matrix:
env: RGV=master
# Alternate implementations
- rvm: jruby
- env: RGV=v2.2.1
+ env: RGV=v2.2.2
- rvm: rbx
- env: RGV=v2.2.1
+ env: RGV=v2.2.2
# Rubygems goes down to 2.0 on Ruby 2.0.0
- rvm: 2.0.0
env: RGV=v2.1.11
diff --git a/Rakefile b/Rakefile
index b79d0b4639..8aee228e0b 100644
--- a/Rakefile
+++ b/Rakefile
@@ -111,7 +111,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.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.2)
(branches + releases).each do |rg|
desc "Run specs with Rubygems #{rg}"
RSpec::Core::RakeTask.new(rg) do |t|