diff options
author | David RodrÃguez <[email protected]> | 2019-07-10 17:23:29 +0200 |
---|---|---|
committer | SHIBATA Hiroshi <[email protected]> | 2019-08-16 14:30:23 +0900 |
commit | 8f28ae65a861ba714be824ea3122817abe9f862d (patch) | |
tree | 4c82e059c100d160450d6452eccbbd708539c1db | |
parent | cd15d27d10d4f041cf4e60064dae96562c9bd83f (diff) |
[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
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/2366
-rw-r--r-- | lib/bundler/bundler.gemspec | 5 |
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 |