ruby-changes:61326
From: Hiroshi <ko1@a...>
Date: Fri, 22 May 2020 20:32:57 +0900 (JST)
Subject: [ruby-changes:61326] 9c2752296d (master): Glob the all man files provided by bundler upstream
https://git.ruby-lang.org/ruby.git/commit/?id=9c2752296d From 9c2752296d526a127aab69216ab31b2cab3fb7a1 Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA <hsbt@r...> Date: Sat, 16 May 2020 09:24:57 +0900 Subject: Glob the all man files provided by bundler upstream diff --git a/lib/bundler/bundler.gemspec b/lib/bundler/bundler.gemspec index 1ef46c8..d29f800 100644 --- a/lib/bundler/bundler.gemspec +++ b/lib/bundler/bundler.gemspec @@ -34,7 +34,7 @@ Gem::Specification.new do |s| https://github.com/ruby/ruby/blob/trunk/lib/bundler/bundler.gemspec#L34 s.required_ruby_version = ">= 2.3.0" s.required_rubygems_version = ">= 2.5.2" - s.files = (Dir.glob("lib/bundler/**/*", File::FNM_DOTMATCH) + Dir.glob("man/bundler*") + Dir.glob("libexec/bundle*")).reject {|f| File.directory?(f) } + s.files = (Dir.glob("lib/bundler/**/*", File::FNM_DOTMATCH) + Dir.glob("man/bundle*") + Dir.glob("man/gemfile*") + Dir.glob("libexec/bundle*")).reject {|f| File.directory?(f) } s.files += ["lib/bundler.rb"] -- cgit v0.10.2 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/