summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2019-03-08 15:06:18 +0100
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2019-03-09 11:55:18 +0100
commit9947f09dd34197df9c9d38c6d6096015fb6fa011 (patch)
tree34fefe352a3eb4b7dd7d716454bf221f1e2f7606
parent1ba671ba459353470b68e61a869e16a00c07ccbf (diff)
downloadbundler-9947f09dd34197df9c9d38c6d6096015fb6fa011.tar.gz
Use rubygems 3.0.3 in CI
-rw-r--r--.travis.yml4
-rw-r--r--Rakefile4
2 files changed, 4 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index e0c6c2b07a..ad56cf5b85 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -43,7 +43,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=v3.0.2
+ - RGV=v3.0.3
jobs:
include:
@@ -68,7 +68,7 @@ jobs:
stage: test
# 1.x mode (we want to keep stuff passing in 1.x mode for now)
- rvm: 2.6.1
- env: RGV=v3.0.2 BUNDLER_SPEC_SUB_VERSION=1.98
+ env: RGV=v3.0.3 BUNDLER_SPEC_SUB_VERSION=1.98
stage: test
allow_failures:
diff --git a/Rakefile b/Rakefile
index 7b736e6943..4eed4799db 100644
--- a/Rakefile
+++ b/Rakefile
@@ -69,7 +69,7 @@ namespace :spec do
sh "sudo apt-get install graphviz -y 2>&1 | tail -n 2"
# Install the gems with a consistent version of RubyGems
- sh "gem update --system 3.0.2"
+ sh "gem update --system 3.0.3"
# Fix incorrect default gem specifications on ruby 2.6.1. Can be removed
# when 2.6.2 is released and we start testing against it
@@ -139,7 +139,7 @@ begin
rubyopt = ENV["RUBYOPT"]
# When editing this list, also edit .travis.yml!
branches = %w[master]
- releases = %w[v2.5.2 v2.6.14 v2.7.8 v3.0.2]
+ releases = %w[v2.5.2 v2.6.14 v2.7.8 v3.0.3]
(branches + releases).each do |rg|
desc "Run specs with RubyGems #{rg}"
RSpec::Core::RakeTask.new(rg) do |t|