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

[ruby/forwardable] gemspec: Explicitly empty the executables list

This gem exposes no executables.

https://github.com/ruby/forwardable/commit/374b685927
This commit is contained in:
Olle Jonsson 2021-03-31 16:04:08 +02:00 committed by Hiroshi SHIBATA
parent b68a4c199c
commit c27e8f1caf

View file

@ -21,6 +21,6 @@ Gem::Specification.new do |spec|
spec.required_ruby_version = '>= 2.4.0'
spec.files = ["forwardable.gemspec", "lib/forwardable.rb", "lib/forwardable/impl.rb"]
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.executables = []
spec.require_paths = ["lib"]
end