diff options
| author | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2023-08-04 19:20:39 +0900 |
|---|---|---|
| committer | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2023-08-04 21:12:09 +0900 |
| commit | ae8fd392d5b97c650a44db8bbfad24664aa5e995 (patch) | |
| tree | 60ad08b456ff11fbc417f49ef93c4b4cd292980c | |
| parent | a0b695b4e6e2c2edc566558c0b9588dd3b85d712 (diff) | |
Fixed worng key of bundled_gems list
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/8172
| -rw-r--r-- | lib/bundler/rubygems_integration.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/rubygems_integration.rb b/lib/bundler/rubygems_integration.rb index cd6ff3d673..664cc12bc8 100644 --- a/lib/bundler/rubygems_integration.rb +++ b/lib/bundler/rubygems_integration.rb @@ -254,7 +254,7 @@ module Bundler "inline Gemfile" end be = RUBY_VERSION < ::Gem::BUNDLED_GEMS::SINCE[name] ? "will be" : "is" - warn "#{name} #{be} not part of the default gems since Ruby #{::Gem::BUNDLED_GEMS::SINCE[file]}." \ + warn "#{name} #{be} not part of the default gems since Ruby #{::Gem::BUNDLED_GEMS::SINCE[name]}." \ " Add it to your #{target_file}." end end |
