Use git ls-files to only package up tracked files! (No .orig)

This commit is contained in:
Karl Matthias
2014-01-14 20:28:07 -08:00
parent 90177a7ff5
commit b187533157
+1 -1
View File
@@ -8,7 +8,7 @@ Gem::Specification.new do |s|
EOS
s.authors = ["Karl Matthias"]
s.email = 'relistan@gmail.com'
s.files = Dir.glob("lib/**/*") + %w{ README.md LICENSE }
s.files = `git ls-files`.split(/\n/) + %w{ README.md LICENSE }
s.homepage = 'http://github.com/mydrive/capistrano-deploytags'
s.add_dependency 'capistrano'
s.add_dependency 'capistrano-ext'