diff options
| author | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2023-10-12 17:33:52 +0900 |
|---|---|---|
| committer | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2023-10-13 16:22:09 +0900 |
| commit | c6728caeb7ad63963737bd43f53cf4a667990b77 (patch) | |
| tree | 5f15b91a8c14d2b243aa161d811ce70c19bbc1da | |
| parent | fe5329f032c4c71b58ffe5ca3ba32ed955adfc01 (diff) | |
Fix wrong gem name
| -rw-r--r-- | lib/bundled_gems.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundled_gems.rb b/lib/bundled_gems.rb index 9006a1eba8..3f77d84dab 100644 --- a/lib/bundled_gems.rb +++ b/lib/bundled_gems.rb @@ -102,7 +102,7 @@ module Gem::BUNDLED_GEMS break end end - msg += " Also contact author of #{caller_gem} to add #{name} into its gemspec." + msg += " Also contact author of #{caller_gem} to add #{gem} into its gemspec." end else msg += " Install #{gem} from RubyGems." |
