aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bundler.gemspec
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bundler.gemspec')
-rw-r--r--lib/bundler.gemspec9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/bundler.gemspec b/lib/bundler.gemspec
index d4bbc6be77..96b9b7861b 100644
--- a/lib/bundler.gemspec
+++ b/lib/bundler.gemspec
@@ -49,7 +49,16 @@ Gem::Specification.new do |s|
s.add_development_dependency "ronn", "~> 0.7.3"
s.add_development_dependency "rspec", "~> 3.6"
+ # s.files = `git ls-files -z`.split("\x0").select {|f| f.match(%r{^(lib|exe)/}) }
+ # 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("man/**/*")
+ # Include the CHANGELOG.md, LICENSE.md, README.md manually
+ # s.files += %w[CHANGELOG.md LICENSE.md README.md]
+ # include the gemspec itself because warbler breaks w/o it
s.files += %w[bundler.gemspec]
+ # s.bindir = "exe"
+ # s.executables = %w[bundle bundler]
s.require_paths = ["lib"]
end