mirror of
https://github.com/inspec/inspec
synced 2024-11-22 20:53:11 +00:00
bugfix: ignore delivery when building the gem
This commit is contained in:
parent
ca214bfb34
commit
dbbf7041de
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ Gem::Specification.new do |spec|
|
|||
spec.homepage = 'https://github.com/...'
|
||||
spec.license = 'Proprietary'
|
||||
|
||||
spec.files = `hash git 2>/dev/null && git ls-files -z`.split("\x0")
|
||||
spec.files = `hash git 2>/dev/null && git ls-files -z`.split("\x0").find_all { |x| x !~ /^\.delivery/ }
|
||||
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']
|
||||
|
|
Loading…
Reference in a new issue