diff options
author | Olle Jonsson <[email protected]> | 2025-01-22 13:02:26 +0100 |
---|---|---|
committer | git <[email protected]> | 2025-01-23 00:24:44 +0000 |
commit | a1ba394626bec152010022d9aacbe1cd8425827e (patch) | |
tree | 31a7c7b5a65d0280bb936390b93936c190042796 | |
parent | 9bec592cc46f89ce962d24f914682d40a1cea1e8 (diff) |
[ruby/weakref] weakref.gemspec: Drop gemspec config on executables
This gem does not expose any executables.
https://github.com/ruby/weakref/commit/819471ce35
-rw-r--r-- | lib/weakref.gemspec | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/weakref.gemspec b/lib/weakref.gemspec index 03893f77e6..9d5c79851e 100644 --- a/lib/weakref.gemspec +++ b/lib/weakref.gemspec @@ -26,8 +26,6 @@ Gem::Specification.new do |spec| spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do `git ls-files -z 2>#{IO::NULL}`.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"] spec.add_dependency "delegate" |