From f28839e7b8a974a144fef7780bc2bf3320b0ee91 Mon Sep 17 00:00:00 2001 From: Olle Jonsson Date: Wed, 31 Mar 2021 16:18:29 +0200 Subject: [PATCH] gemspec: Explicitly empty executables list --- abbrev.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/abbrev.gemspec b/abbrev.gemspec index 4edf0ed..72837ed 100644 --- a/abbrev.gemspec +++ b/abbrev.gemspec @@ -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.executables = [] spec.require_paths = ["lib"] end