mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
[rubygems/rubygems] Print warning when running potentially problematic rubygems + ruby combinations
https://github.com/rubygems/rubygems/commit/d6df0b7de0 Co-authored-by: André Arko <andre@arko.net>
This commit is contained in:
parent
01f95ede0e
commit
7bd25b9753
2 changed files with 10 additions and 0 deletions
|
@ -18,6 +18,15 @@ end
|
||||||
# Workaround for non-activated bundler spec due to missing https://github.com/rubygems/rubygems/commit/4e306d7bcdee924b8d80ca9db6125aa59ee4e5a3
|
# Workaround for non-activated bundler spec due to missing https://github.com/rubygems/rubygems/commit/4e306d7bcdee924b8d80ca9db6125aa59ee4e5a3
|
||||||
gem "bundler", Bundler::VERSION if Gem.rubygems_version < Gem::Version.new("2.6.2")
|
gem "bundler", Bundler::VERSION if Gem.rubygems_version < Gem::Version.new("2.6.2")
|
||||||
|
|
||||||
|
if Gem.rubygems_version < Gem::Version.new("3.2.3") && Gem.ruby_version < Gem::Version.new("2.6.a") && !ENV["BUNDLER_NO_OLD_RUBYGEMS_WARNING"]
|
||||||
|
Bundler.ui.warn \
|
||||||
|
"Your RubyGems version (#{Gem::VERSION})) has a bug that prevents " \
|
||||||
|
"`required_ruby_version` from working for Bundler. Any scripts that use " \
|
||||||
|
"`gem install bundler` will break as soon as Bundler drops support for " \
|
||||||
|
"your Ruby version. Please upgrade RubyGems to avoid future breakage " \
|
||||||
|
"and silence this warning by running `gem update --system 3.2.3`"
|
||||||
|
end
|
||||||
|
|
||||||
if File.exist?(base_path)
|
if File.exist?(base_path)
|
||||||
require_relative "../lib/bundler/friendly_errors"
|
require_relative "../lib/bundler/friendly_errors"
|
||||||
else
|
else
|
||||||
|
|
|
@ -72,6 +72,7 @@ RSpec.configure do |config|
|
||||||
require_relative "support/rubygems_ext"
|
require_relative "support/rubygems_ext"
|
||||||
Spec::Rubygems.test_setup
|
Spec::Rubygems.test_setup
|
||||||
ENV["BUNDLER_SPEC_RUN"] = "true"
|
ENV["BUNDLER_SPEC_RUN"] = "true"
|
||||||
|
ENV["BUNDLER_NO_OLD_RUBYGEMS_WARNING"] = "true"
|
||||||
ENV["BUNDLE_USER_CONFIG"] = ENV["BUNDLE_USER_CACHE"] = ENV["BUNDLE_USER_PLUGIN"] = nil
|
ENV["BUNDLE_USER_CONFIG"] = ENV["BUNDLE_USER_CACHE"] = ENV["BUNDLE_USER_PLUGIN"] = nil
|
||||||
ENV["RUBYGEMS_GEMDEPS"] = nil
|
ENV["RUBYGEMS_GEMDEPS"] = nil
|
||||||
ENV["XDG_CONFIG_HOME"] = nil
|
ENV["XDG_CONFIG_HOME"] = nil
|
||||||
|
|
Loading…
Add table
Reference in a new issue