summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-11-16 23:27:37 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-11-16 23:27:37 +0000
commit3ec3d7d943081ed23333cb7c865786d4179e8d0a (patch)
treea76275c08b0574cafab61db75cd2f2925f9ecb05 /lib
parentf632ecd0ff1130227f9c883416a2635434ea4ac8 (diff)
Switch to 2-0-stable branch of bundler/bundler repository from our fork repository.
https://github.com/bundler/bundler/tree/2-0-stable git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65770 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-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