diff options
author | Andre Arko <andre@arko.net> | 2010-10-05 21:17:21 -0700 |
---|---|---|
committer | Andre Arko <andre@arko.net> | 2010-10-05 21:17:21 -0700 |
commit | 7e6e8dd4c9ae7ed70f52d4387aa2cae3cc28e15e (patch) | |
tree | fe2c7f2cd305e4d57941756889e12fa04d29d0d4 /bundler.gemspec | |
parent | 486818355545584c61e5ae72988da9687e843eeb (diff) | |
download | bundler-7e6e8dd4c9ae7ed70f52d4387aa2cae3cc28e15e.tar.gz |
Comment to explain the man files
Diffstat (limited to 'bundler.gemspec')
-rw-r--r-- | bundler.gemspec | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bundler.gemspec b/bundler.gemspec index 1a56e3c5a8..abd4ae5668 100644 --- a/bundler.gemspec +++ b/bundler.gemspec @@ -20,7 +20,9 @@ Gem::Specification.new do |s| s.add_development_dependency "ronn" s.add_development_dependency "rspec" - s.files = `git ls-files`.split("\n") + Dir.glob("lib/bundler/man/**/*") + # Man files are required because they are ignored by git + man_files = Dir.glob("lib/bundler/man/**/*") + s.files = `git ls-files`.split("\n") + man_files s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = %w(bundle) s.default_executable = "bundle" |