diff options
author | Olle Jonsson <[email protected]> | 2021-04-06 11:48:30 +0200 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2021-04-21 20:43:18 +0900 |
commit | 2229fc8b57f8af931bb1c5301423b5d2208ca0df () | |
tree | 6dae605396b536f3dac78f2a93596c5353d6e13c /lib/resolv.gemspec | |
parent | c27e8f1caf77050d4b89a2e9f7278d8db711ba1f (diff) |
[ruby/resolv] gemspec: Explicitly list 0 executables
This gem exposes no executables, and this makes that clearer. https://.com/ruby/resolv/commit/8797a9d3ce
-rw-r--r-- | lib/resolv.gemspec | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -17,6 +17,6 @@ Gem::Specification.new do |spec| `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } end spec.bindir = "exe" - spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] end |