From 7da06b91ff37f08378abb362c3452da1a4510012 Mon Sep 17 00:00:00 2001 From: Olle Jonsson Date: Mon, 28 Jul 2025 14:19:22 +0200 Subject: [PATCH] shellwords.gemspec: Avoid configuring exe/ directory This gem does not ship any executables. --- shellwords.gemspec | 2 -- 1 file changed, 2 deletions(-) diff --git a/shellwords.gemspec b/shellwords.gemspec index 8d0c518..b601508 100644 --- a/shellwords.gemspec +++ b/shellwords.gemspec @@ -25,7 +25,5 @@ Gem::Specification.new do |spec| spec.files = Dir.chdir(srcdir) do `git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:(?:test|spec|features)/|\.git|Rake)}) || f == gemspec_file} end - spec.bindir = "exe" - spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] end