1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
From: Daniel Leidert <dleidert@debian.org>
Date: Sat, 27 Nov 2021 22:30:07 +0100
Subject: Remove git from gemspec
Forwarded: not-needed
---
rabl.gemspec | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/rabl.gemspec
+++ b/rabl.gemspec
@@ -13,7 +13,7 @@ Gem::Specification.new do |s|
s.description = %q{General ruby templating with json, bson, xml and msgpack support}
s.license = 'MIT'
- s.files = `git ls-files -z -- {*.md,MIT-LICENSE,lib}`.split("\x0").sort
+ s.files = Dir.glob("**/*").grep_v(%r{^(bin|debian|examples|fixtures|spec|test)/})
s.require_paths = ["lib"]
|