1
0
Fork 0
mirror of https://github.com/fog/fog-aws.git synced 2022-11-09 13:50:52 -05:00

Don’t install development scripts

The scripts in `bin` appear intended for development, and have very
generic names. They should not be installed as executables when
installing the gem. Instead, change such executables to come from `exe`,
which is more common.
This commit is contained in:
Andrew Marshall 2020-04-24 10:22:03 -04:00 committed by GitHub
parent f4ecdd485c
commit 6aeecafa00
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,7 +15,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"]