From 39a182fece90c244cacc7ee3e73f09816630cebf Mon Sep 17 00:00:00 2001 From: Olle Jonsson Date: Wed, 17 Jun 2026 08:43:57 +0200 Subject: [PATCH] gemspec: Drop executables configuration This gem ships with 0 executables. --- yaml.gemspec | 2 -- 1 file changed, 2 deletions(-) diff --git a/yaml.gemspec b/yaml.gemspec index 17e1ce8..620393d 100644 --- a/yaml.gemspec +++ b/yaml.gemspec @@ -24,7 +24,5 @@ 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"] end