aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2023-08-04 19:20:39 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2023-08-04 21:12:09 +0900
commitae8fd392d5b97c650a44db8bbfad24664aa5e995 (patch)
tree60ad08b456ff11fbc417f49ef93c4b4cd292980c /lib
parenta0b695b4e6e2c2edc566558c0b9588dd3b85d712 (diff)
downloadruby-ae8fd392d5b97c650a44db8bbfad24664aa5e995.tar.gz
Fixed worng key of bundled_gems list
Diffstat (limited to 'lib')
-rw-r--r--lib/bundler/rubygems_integration.rb2
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