diff options
author | David RodrÃguez <[email protected]> | 2024-10-21 12:07:09 +0200 |
---|---|---|
committer | git <[email protected]> | 2024-10-23 08:52:46 +0000 |
commit | b843d4ee148c70a77b992291e226d23dc981368b (patch) | |
tree | 171526a233cc93eb0bc19a58ae5b945da9e443a5 /lib/bundler/source | |
parent | 4790ecc86f7f73a0afbda836c730cb1226f5b786 (diff) |
[rubygems/rubygems] Fix running `bundler` (with a final `r`) in a `bundle exec` context
https://github.com/rubygems/rubygems/commit/ad95a1dfaa
Diffstat (limited to 'lib/bundler/source')
-rw-r--r-- | lib/bundler/source/metadata.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/source/metadata.rb b/lib/bundler/source/metadata.rb index a6f3ef8fdd..fd959cd64e 100644 --- a/lib/bundler/source/metadata.rb +++ b/lib/bundler/source/metadata.rb @@ -24,7 +24,7 @@ module Bundler s.bindir = "exe" s.homepage = "https://bundler.io" s.summary = "The best way to manage your application's dependencies" - s.executables = %w[bundle] + s.executables = %w[bundle bundler] s.loaded_from = SharedHelpers.gemspec_path end end |