aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bundler
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2019-07-10 17:23:29 +0200
committerSHIBATA Hiroshi <hsbt@ruby-lang.org>2019-08-16 14:30:23 +0900
commit8f28ae65a861ba714be824ea3122817abe9f862d (patch)
tree4c82e059c100d160450d6452eccbbd708539c1db /lib/bundler
parentcd15d27d10d4f041cf4e60064dae96562c9bd83f (diff)
downloadruby-8f28ae65a861ba714be824ea3122817abe9f862d.tar.gz
[bundler/bundler] Remove misleading comment in Gemfile
Since we no longer use `git` to find out the list of files, the comment is misleading. https://github.com/bundler/bundler/commit/54d85d5349
Diffstat (limited to 'lib/bundler')
-rw-r--r--lib/bundler/bundler.gemspec5
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/bundler/bundler.gemspec b/lib/bundler/bundler.gemspec
index 5ffd717ea6..50be960cab 100644
--- a/lib/bundler/bundler.gemspec
+++ b/lib/bundler/bundler.gemspec
@@ -34,11 +34,8 @@ Gem::Specification.new do |s|
s.required_ruby_version = ">= 2.3.0"
s.required_rubygems_version = ">= 2.5.2"
- # s.files = Dir.glob("{lib,exe}/**/*", File::FNM_DOTMATCH).reject {|f| File.directory?(f) }
+ # s.files = Dir.glob("{lib,man,exe}/**/*", File::FNM_DOTMATCH).reject {|f| File.directory?(f) }
- # 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