ruby-changes:64642
From: Hiroshi <ko1@a...>
Date: Mon, 28 Dec 2020 18:41:54 +0900 (JST)
Subject: [ruby-changes:64642] a0d1152d2e (master): [ruby/drb] Removed needless files from Gem::Specification#files
https://git.ruby-lang.org/ruby.git/commit/?id=a0d1152d2e From a0d1152d2ed5d48d2702acaa711c184181f7e0c4 Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA <hsbt@r...> Date: Mon, 28 Dec 2020 18:39:35 +0900 Subject: [ruby/drb] Removed needless files from Gem::Specification#files https://github.com/ruby/drb/commit/61c49af71b diff --git a/lib/drb/drb.gemspec b/lib/drb/drb.gemspec index 6b31e89..15e693f 100644 --- a/lib/drb/drb.gemspec +++ b/lib/drb/drb.gemspec @@ -19,11 +19,24 @@ Gem::Specification.new do |spec| https://github.com/ruby/ruby/blob/trunk/lib/drb/drb.gemspec#L19 spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = spec.homepage - # Specify which files should be added to the gem when it is released. - # The `git ls-files -z` loads the files in the RubyGem that have been added into git. - spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do - `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } - end + spec.files = %w[ + LICENSE.txt + drb.gemspec + lib/drb.rb + lib/drb/acl.rb + lib/drb/drb.rb + lib/drb/eq.rb + lib/drb/extserv.rb + lib/drb/extservm.rb + lib/drb/gw.rb + lib/drb/invokemethod.rb + lib/drb/observer.rb + lib/drb/ssl.rb + lib/drb/timeridconv.rb + lib/drb/unix.rb + lib/drb/version.rb + lib/drb/weakidconv.rb + ] spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] -- cgit v0.10.2 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/