[rubygems/rubygems] Add a note about required_rubygems_version in Bundler

https://github.com/rubygems/rubygems/commit/9509d98b5c
This commit is contained in:
David Rodríguez 2023-10-27 20:43:26 +02:00 committed by Hiroshi SHIBATA
parent a4d80eee17
commit c7bf511cbf

View File

@ -30,7 +30,9 @@ Gem::Specification.new do |s|
}
s.required_ruby_version = ">= 3.0.0"
s.required_rubygems_version = ">= 3.1.2"
# It should match the RubyGems version shipped with `required_ruby_version` above
s.required_rubygems_version = ">= 3.2.3"
s.files = Dir.glob("lib/bundler{.rb,/**/*}", File::FNM_DOTMATCH).reject {|f| File.directory?(f) }