aboutsummaryrefslogtreecommitdiffstats
path: root/lib/forwardable/forwardable.gemspec
diff options
context:
space:
mode:
authorOlle Jonsson <olle.jonsson@gmail.com>2021-03-31 16:04:08 +0200
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2021-04-21 20:41:52 +0900
commitc27e8f1caf77050d4b89a2e9f7278d8db711ba1f (patch)
tree9e7ff99160ad0b0301de00cfb53d8b7f02c5195f /lib/forwardable/forwardable.gemspec
parentb68a4c199c8b00efa9671debf83ba0bd3a4539a1 (diff)
downloadruby-c27e8f1caf77050d4b89a2e9f7278d8db711ba1f.tar.gz
[ruby/forwardable] gemspec: Explicitly empty the executables list
This gem exposes no executables. https://github.com/ruby/forwardable/commit/374b685927
Diffstat (limited to 'lib/forwardable/forwardable.gemspec')
-rw-r--r--lib/forwardable/forwardable.gemspec2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/forwardable/forwardable.gemspec b/lib/forwardable/forwardable.gemspec
index 523b8eec6f..9ad59c5f8a 100644
--- a/lib/forwardable/forwardable.gemspec
+++ b/lib/forwardable/forwardable.gemspec
@@ -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