ruby-changes:61223
From: Hiroshi <ko1@a...>
Date: Wed, 13 May 2020 07:55:10 +0900 (JST)
Subject: [ruby-changes:61223] a7c1791cec (master): Partly reverted bundler.gemspec for ruby core testing
https://git.ruby-lang.org/ruby.git/commit/?id=a7c1791cec From a7c1791cec213bf1183a9f397cc60718f9de656f Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA <hsbt@r...> Date: Thu, 7 May 2020 16:15:53 +0900 Subject: Partly reverted bundler.gemspec for ruby core testing diff --git a/lib/bundler/bundler.gemspec b/lib/bundler/bundler.gemspec index 27a7f1e..1ef46c8 100644 --- a/lib/bundler/bundler.gemspec +++ b/lib/bundler/bundler.gemspec @@ -34,14 +34,11 @@ 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,man,exe}/**/*", File::FNM_DOTMATCH).reject {|f| File.directory?(f) } + s.files = (Dir.glob("lib/bundler/**/*", File::FNM_DOTMATCH) + Dir.glob("man/bundler*") + Dir.glob("libexec/bundle*")).reject {|f| File.directory?(f) } - # 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.files += ["lib/bundler.rb"] - s.bindir = "exe" + s.bindir = "libexec" s.executables = %w[bundle bundler] s.require_paths = ["lib"] end -- cgit v0.10.2 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/