puppet-strings/debian/patches/remove_misc_from_gemspec

42 lines
825 B
Plaintext

Description: Remove misc folder from gemspec
The misc folder contains project specific files that aren't needed in built
packages.
.
puppet-strings (2.1.0-1) unstable; urgency=medium
.
* Initial release. (Closes: #915359)
Author: Kienan Stewart <kienan.stewart@burntworld.ca>
Bug-Debian: https://bugs.debian.org/915359
Last-Update: 2018-12-05
--- puppet-strings-2.1.0.orig/puppet-strings.gemspec
+++ puppet-strings-2.1.0/puppet-strings.gemspec
@@ -21,7 +21,7 @@ Gem::Specification.new do |s|
'README.md',
]
#s.files = `git ls-files`.split("\n") - Dir['.*', '*.gemspec']
- s.files = Dir.glob("{lib,misc,spec}/**/*") +
+ s.files = Dir.glob("{lib,spec}/**/*") +
['CHANGELOG.md', 'LICENSE', 'README.md', 'Rakefile', __FILE__]
s.add_runtime_dependency 'yard', '~> 0.9.5'