1 2 3 4 5 6 7 8 9 10 11 12 13 14
|
Description: don't relly on git for manifest
Author: Antonio Terceiro <terceiro@debian.org>
--- ruby-spring-1.1.3.orig/spring.gemspec
+++ ruby-spring-1.1.3/spring.gemspec
@@ -13,7 +13,7 @@ Gem::Specification.new do |gem|
gem.homepage = "http://github.com/rails/spring"
gem.license = "MIT"
- gem.files = `git ls-files`.split($/)
+ gem.files = %w[CHANGELOG.md CONTRIBUTING.md Gemfile LICENSE.txt README.md Rakefile] + Dir.glob('{bin,lib,test}/**/*')
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
|