From 9d2c49cb1970d054d283869b371139bc2c8b0f6a Mon Sep 17 00:00:00 2001 From: Olle Jonsson Date: Wed, 31 Mar 2021 16:08:35 +0200 Subject: [PATCH] gemspec: Explicitly empty executables list This gem exposes no executables. --- base64.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base64.gemspec b/base64.gemspec index 331ecc4..c370f96 100644 --- a/base64.gemspec +++ b/base64.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