summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlle Jonsson <olle.jonsson@gmail.com>2021-03-31 16:18:29 +0200
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2021-04-21 20:39:04 +0900
commit855997a4d4b7cf9e7e72212cc02d593871dd3887 (patch)
tree01ca8ef217796b859bbfe5fa0a31cdc08adf91b3
parent4ac72d37d79354a2bf036b2f6dd9c3ae1b523376 (diff)
[ruby/abbrev] gemspec: Explicitly empty executables list
https://github.com/ruby/abbrev/commit/f28839e7b8
-rw-r--r--lib/abbrev.gemspec2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/abbrev.gemspec b/lib/abbrev.gemspec
index 4edf0edaa3..72837ed2ab 100644
--- a/lib/abbrev.gemspec
+++ b/lib/abbrev.gemspec
@@ -17,6 +17,6 @@ Gem::Specification.new do |spec|
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
end
spec.bindir = "exe"
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
+ spec.executables = []
spec.require_paths = ["lib"]
end