1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

[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
This commit is contained in:
Olle Jonsson 2021-04-06 12:42:40 +02:00 committed by Hiroshi SHIBATA
parent 347c3b3083
commit 4ac72d37d7

View file

@ -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