From 112f01b2acaddff3046517db32f6695519ce6a3d Mon Sep 17 00:00:00 2001 From: Tim Riley Date: Tue, 26 Jul 2016 22:44:08 +1000 Subject: [PATCH] Rename installable bins directory to exe/ MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is in keeping with bundler’s default new gem project setup and will ensure we don’t accidentally install any utility scripts that might find their way into a bin/ dir. --- dry-web-roda.gemspec | 2 +- {bin => exe}/dry-web-roda | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename {bin => exe}/dry-web-roda (100%) diff --git a/dry-web-roda.gemspec b/dry-web-roda.gemspec index 9c8ee8f..8494770 100644 --- a/dry-web-roda.gemspec +++ b/dry-web-roda.gemspec @@ -13,7 +13,7 @@ Gem::Specification.new do |spec| spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0") - spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } + spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] diff --git a/bin/dry-web-roda b/exe/dry-web-roda similarity index 100% rename from bin/dry-web-roda rename to exe/dry-web-roda