File: 001-remove-git-in-gemspec.patch

package info (click to toggle)
ruby-securecompare 1.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 124 kB
  • sloc: ruby: 43; makefile: 3
file content (13 lines) | stat: -rw-r--r-- 404 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
Index: ruby-securecompare/.gemspec.rb
===================================================================
--- ruby-securecompare.orig/.gemspec.rb
+++ ruby-securecompare/.gemspec.rb
@@ -43,7 +43,7 @@ class Files < Array
 end
 
 def files
-  @files ||= Files.new(`git ls-files`.split($/))
+  @files ||= Files.new(`find lib -name \*.rb`.split($/))
 end
 
 def readme(path = File.expand_path("./README.md"))