summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBundlerbot <bot@bundler.io>2019-02-12 11:30:10 +0000
committerBundlerbot <bot@bundler.io>2019-02-12 11:30:10 +0000
commit189d56f2341d64ec5440242f42dbf84002be1238 (patch)
tree2ddfcc12f8b42c166d034f98eeda8531e61bbbf2
parent07980f0d4817e525fe55b7c0aaf45cfb5d809024 (diff)
parent0b7b397b875343fda65fd59ec15dce5a36b8f372 (diff)
downloadbundler-189d56f2341d64ec5440242f42dbf84002be1238.tar.gz
Merge #6959
6959: Bump base rubygems version to 3.0.2 r=deivid-rodriguez a=deivid-rodriguez ### What was the end-user problem that led to this PR? The problem was that we are using old rubygems versions internally. ### What was your diagnosis of the problem? My diagnosis was that we should use the newest version of our own software. ### What is your fix for the problem, implemented in this PR? My fix is to upgrade the rubygems version used in the Rakefile for development tasks. ### Why did you choose this fix out of the possible options? I chose this fix because it's good for us. Co-authored-by: David Rodríguez <deivid.rodriguez@riseup.net>
-rw-r--r--Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index aba3346f34..4d68079dc4 100644
--- a/Rakefile
+++ b/Rakefile
@@ -73,7 +73,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 2.6.13"
+ sh "gem update --system 3.0.2"
# 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