File: gemspec.patch

package info (click to toggle)
ruby-spring 1.1.3-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 364 kB
  • ctags: 429
  • sloc: ruby: 2,762; makefile: 6
file content (14 lines) | stat: -rw-r--r-- 660 bytes parent folder | download | duplicates (2)
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"]