summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2020-12-28 16:18:42 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2020-12-28 16:20:37 +0900
commite6fee2b64f9e85cfec00ee5d2ed6f8a8ddd11544 (patch)
treee82741a71c07003be391da6f570a978516676271 /lib
parent8b387bcfba84ee5ca57e7786d21ff927d4ee8e90 (diff)
[ruby/pp] Removed needless files from Gem::Specification#files
https://github.com/ruby/pp/commit/272d4befeb
Diffstat (limited to 'lib')
-rw-r--r--lib/pp.gemspec8
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/pp.gemspec b/lib/pp.gemspec
index bdf6fca3a5..a6c80f9eb3 100644
--- a/lib/pp.gemspec
+++ b/lib/pp.gemspec
@@ -14,9 +14,11 @@ Gem::Specification.new do |spec|
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
- 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
+ lib/pp.rb
+ pp.gemspec
+ ]
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]