diff options
Diffstat (limited to 'ats-cli.gemspec')
| -rw-r--r-- | ats-cli.gemspec | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ats-cli.gemspec b/ats-cli.gemspec index e0c3a65..233f78c 100644 --- a/ats-cli.gemspec +++ b/ats-cli.gemspec @@ -14,8 +14,10 @@ Gem::Specification.new do |spec| spec.homepage = "https://www.mokhan.ca/" spec.license = "MIT" - spec.files = `git ls-files -z`.split("\x0").reject do |f| - f.match(%r{^(test|spec|features)/}) + spec.files = `git ls-files -z`.split("\x0").reject do |f| + f.match(%r{^(test|spec|features)/}) || + f.match(/^\..*/) || + f.match(%r{^bin/.*}) end spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } |
