summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorOlle Jonsson <olle.jonsson@gmail.com>2021-04-06 12:42:40 +0200
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2021-04-21 20:38:00 +0900
commit4ac72d37d79354a2bf036b2f6dd9c3ae1b523376 (patch)
treed9b3fb49d72b18bec239a0581fccb9da38d8509e /ext
parent347c3b30836304416a97f04f3cb2feb8f9c202c2 (diff)
[ruby/io-wait] gemspec: Explicitly list 0 executables
This gem exposes no executables, and this clarifies this. https://github.com/ruby/io-wait/commit/f491c6cc64
Diffstat (limited to 'ext')
-rw-r--r--ext/io/wait/io-wait.gemspec2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/io/wait/io-wait.gemspec b/ext/io/wait/io-wait.gemspec
index d820697338..103b75e4ac 100644
--- a/ext/io/wait/io-wait.gemspec
+++ b/ext/io/wait/io-wait.gemspec
@@ -22,6 +22,6 @@ Gem::Specification.new do |spec|
end
spec.extensions = %w[ext/io/wait/extconf.rb]
spec.bindir = "exe"
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
+ spec.executables = []
spec.require_paths = ["lib"]
end