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

[ruby/optparse] gemspec: Explicitly list 0 executables

This gem exposes no executable files.

https://github.com/ruby/optparse/commit/d14bf83007
This commit is contained in:
Olle Jonsson 2021-04-06 10:01:37 +02:00 committed by Nobuyoshi Nakada
parent 0d1d779c23
commit 2b66b22479

View file

@ -28,6 +28,6 @@ Gem::Specification.new do |spec|
}
end
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.executables = []
spec.require_paths = ["lib"]
end