aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mauve.gemspec8
1 files changed, 3 insertions, 5 deletions
diff --git a/mauve.gemspec b/mauve.gemspec
index 01515f1..3e1bc4c 100644
--- a/mauve.gemspec
+++ b/mauve.gemspec
@@ -21,11 +21,9 @@ Gem::Specification.new do |spec|
'public gem pushes.'
end
- spec.files = `git ls-files -z`.split("\x0").reject do |f|
- f.match(%r{^(test|spec|features)/})
- end
- spec.bindir = 'exe'
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
+ spec.files = Dir['**/*']
+ spec.bindir = 'bin'
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.add_development_dependency 'bundler', '~> 1.16'