File: 0001-Replace-git-execution-from-gemspec.patch

package info (click to toggle)
ruby-jekyll-feed 0.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 276 kB
  • ctags: 18
  • sloc: ruby: 234; xml: 77; sh: 7; makefile: 2
file content (22 lines) | stat: -rw-r--r-- 2,021 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
From: Youhei SASAKI <uwabami@gfd-dennou.org>
Date: Sun, 22 Nov 2015 15:45:16 +0900
Subject: Replace git execution from gemspec

Signed-off-by: Youhei SASAKI <uwabami@gfd-dennou.org>
---
 jekyll-feed.gemspec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/jekyll-feed.gemspec b/jekyll-feed.gemspec
index 844ee9d..650ffd4 100644
--- a/jekyll-feed.gemspec
+++ b/jekyll-feed.gemspec
@@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
   spec.homepage      = "https://github.com/jekyll/jekyll-feed"
   spec.license       = "MIT"
 
-  spec.files         = `git ls-files -z`.split("\x0")
+  spec.files         = [".gitignore",".rspec",".travis.yml","Gemfile","LICENSE.txt","README.md","Rakefile","jekyll-feed.gemspec","lib/feed.xml","lib/jekyll-feed.rb","script/bootstrap","script/cibuild","script/release","spec/fixtures/_config.yml","spec/fixtures/_layouts/some_default.html","spec/fixtures/_my_collection/custom_permalink.md","spec/fixtures/_my_collection/custom_permalink_2.md","spec/fixtures/_my_collection/test.html","spec/fixtures/_other_things/test2.html","spec/fixtures/_posts/2013-12-12-dec-the-second.md","spec/fixtures/_posts/2014-03-02-march-the-second.md","spec/fixtures/_posts/2014-03-04-march-the-fourth.md","spec/fixtures/_posts/2014-05-11-exclude-this-post.md","spec/fixtures/_posts/2015-01-18-jekyll-last-modified-at.md","spec/fixtures/_posts/2015-05-12-pre.html","spec/fixtures/_posts/2015-05-18-author-detail.md","spec/fixtures/feeds/atom.xml","spec/fixtures/images/hubot.png","spec/fixtures/index.html","spec/fixtures/jekyll-last-modified-at/page.html","spec/fixtures/some-subfolder/exclude-this-page.html","spec/fixtures/some-subfolder/test_index.html","spec/fixtures/some-subfolder/this-is-a-subfile.html","spec/fixtures/some-subfolder/this-is-a-subpage.html","spec/jekyll-feed_spec.rb","spec/spec_helper.rb"]
   spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
   spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
   spec.require_paths = ["lib"]