From 819471ce35c3fcb11a144af8098e5b52bc8f7bd1 Mon Sep 17 00:00:00 2001 From: Olle Jonsson Date: Wed, 22 Jan 2025 13:02:26 +0100 Subject: [PATCH] weakref.gemspec: Drop gemspec config on executables This gem does not expose any executables. --- weakref.gemspec | 2 -- 1 file changed, 2 deletions(-) diff --git a/weakref.gemspec b/weakref.gemspec index 03893f7..9d5c798 100644 --- a/weakref.gemspec +++ b/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"