summaryrefslogtreecommitdiff
path: root/lib/bundler/bundler.gemspec
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2023-12-07 23:59:36 +0100
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2023-12-13 12:59:23 +0900
commit6b3c9cebe94cdd0d5f97877642689baed8a35327 (patch)
tree1da360ae04d98e48db2e3fd692771f2d2b0e7feb /lib/bundler/bundler.gemspec
parent866b6fcd69c85cd00118324942886d92a3bb2a0f (diff)
Normalize bundler bindir
This makes bundler consistent with all other gems, and makes the default installation of Bundler in the release package look like any other bundler installation. Before (on preview3, for example), Bundler executable is installed at: lib/ruby/gems/3.3.0+0/gems/bundler-2.5.0.dev/libexec/bundle Now it's installed in the standard location: lib/ruby/gems/3.3.0+0/gems/bundler-2.5.0.dev/exe/bundle
Diffstat (limited to 'lib/bundler/bundler.gemspec')
-rw-r--r--lib/bundler/bundler.gemspec2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/bundler.gemspec b/lib/bundler/bundler.gemspec
index cc978f0dd4..2d6269fae1 100644
--- a/lib/bundler/bundler.gemspec
+++ b/lib/bundler/bundler.gemspec
@@ -39,7 +39,7 @@ Gem::Specification.new do |s|
# include the gemspec itself because warbler breaks w/o it
s.files += %w[lib/bundler/bundler.gemspec]
- s.bindir = "libexec"
+ s.bindir = "exe"
s.executables = %w[bundle bundler]
s.require_paths = ["lib"]
end