summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlle Jonsson <olle.jonsson@gmail.com>2021-03-31 15:53:46 +0200
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2021-04-20 21:19:41 +0900
commit749aad280f67973e8b4793b72285cc94861a12f9 (patch)
tree50b20d2cbb63a3daad878d69abd7831cfe27167f
parentcc8d0e7cbf33611b1cd4d6e0dbaa3522387af717 (diff)
[ruby/gdbm] gemspec: Set executables to the empty list
This gem exposes zero executables. https://github.com/ruby/gdbm/commit/d51cf47f65
-rw-r--r--ext/gdbm/gdbm.gemspec2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/gdbm/gdbm.gemspec b/ext/gdbm/gdbm.gemspec
index 3ecb3121fe..6fd42c022f 100644
--- a/ext/gdbm/gdbm.gemspec
+++ b/ext/gdbm/gdbm.gemspec
@@ -14,7 +14,7 @@ Gem::Specification.new do |spec|
spec.files = ["ext/gdbm/extconf.rb", "ext/gdbm/gdbm.c"]
spec.bindir = "exe"
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
+ spec.executables = []
spec.require_paths = ["lib"]
spec.extensions = ["ext/gdbm/extconf.rb"]
spec.required_ruby_version = ">= 2.3.0"