summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2019-01-03 14:20:23 -0800
committerAndre Arko <andre@arko.net>2019-01-03 14:20:27 -0800
commit81d3ecf766802f2aab7bb5b6627cd9d597a4eab8 (patch)
tree6b121fc40f8b8fecbaa01603438bf432003fd551
parentd715ae9e612ad002dbe1b62db59d2abdd0f2dd77 (diff)
downloadbundler-81d3ecf766802f2aab7bb5b6627cd9d597a4eab8.tar.gz
Lower required RubyGems to 2.5 or greater
It turns out that every existing version of RubyGems will ignore the required RubyGems version and try to install the newest version of Bundler... until the middle of the install, when it will raise an exception and fail. There are some bugfixes in RubyGems 3 that improve the quality of life for Bundler 2 users, but they are less bad than RubyGems simply exploding anytime you try to run `gem install bundler`.
-rw-r--r--bundler.gemspec2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundler.gemspec b/bundler.gemspec
index af65811f23..fff5d0dfd5 100644
--- a/bundler.gemspec
+++ b/bundler.gemspec
@@ -34,7 +34,7 @@ Gem::Specification.new do |s|
if s.version >= Gem::Version.new("2.a".dup)
s.required_ruby_version = ">= 2.3.0"
- s.required_rubygems_version = ">= 3.0.0"
+ s.required_rubygems_version = ">= 2.5.0"
else
s.required_ruby_version = ">= 1.8.7"
s.required_rubygems_version = ">= 1.3.6"