summaryrefslogtreecommitdiff
path: root/bundler.gemspec
diff options
context:
space:
mode:
authorBodo Tasche <bodo@wannawork.de>2016-10-30 14:10:40 +0100
committerBodo Tasche <bodo@wannawork.de>2016-10-30 18:06:58 +0100
commit8f6970c5465d9aa6d002d2f2b7f03ba82ddde9b5 (patch)
treea0427a25756ed518524d8594c57ae030b6dabcdf /bundler.gemspec
parentced83655d9643e804079a4f2a6967536a4f8b981 (diff)
downloadbundler-8f6970c5465d9aa6d002d2f2b7f03ba82ddde9b5.tar.gz
Move man pages to man folder
The gem-man gem searches for the man pages in the man folder. This pr fixes this and also creates correct names for the manpages. A manpage always needs the section number in the filename.
Diffstat (limited to 'bundler.gemspec')
-rw-r--r--bundler.gemspec2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundler.gemspec b/bundler.gemspec
index f67c538fd6..8188886ded 100644
--- a/bundler.gemspec
+++ b/bundler.gemspec
@@ -27,7 +27,7 @@ Gem::Specification.new do |s|
s.files = `git ls-files -z`.split("\x0").reject {|f| f.match(%r{^(test|spec|features)/}) }
# we don't check in man pages, but we need to ship them because
# we use them to generate the long-form help for each command.
- s.files += Dir.glob("lib/bundler/man/**/*")
+ s.files += Dir.glob("man/**/*")
s.bindir = "exe"
s.executables = %w(bundle bundler)