Description: Avoid git in gemspec
Author: Jonas Smedegaard <dr@jones.dk>
Last-Update: 2014-10-23

--- a/compass-h5bp.gemspec
+++ b/compass-h5bp.gemspec
@@ -14,9 +14,9 @@
 
   s.rubyforge_project = "compass-h5bp"
 
-  s.files         = `git ls-files`.split("\n")
-  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n")
-  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
+  s.files         = `find * -not -path 'debian/*' -type f`.split("\n")
+  s.test_files    = `find * -regextype posix-extended -regex '(test|spec|features)/.*`.split("\n")
+  s.executables   = `find * -path 'bin/*' -type f`.split("\n").map{ |f| File.basename(f) }
   s.require_paths = ["lib"]
 
   s.add_dependency 'sass' # really sass >= 3.3 or compass >= 0.11
