mirror of
https://github.com/inspec/inspec
synced 2024-11-10 07:04:15 +00:00
Further slim the files we ship in the gem artifact (#3647)
The artifact doesn't need the gemspec, gemfile or rakefile since we're not shipping tests already. Also there's no need for the changelog or maintainer file. For those a user should reference the github repo since these files are buried deep on the filesystem and not designed to be read through. Signed-off-by: Tim Smith <tsmith@chef.io>
This commit is contained in:
parent
af269ff39b
commit
6bc5c537a3
1 changed files with 1 additions and 4 deletions
|
@ -13,10 +13,7 @@ Gem::Specification.new do |spec|
|
|||
spec.homepage = 'https://github.com/inspec/inspec'
|
||||
spec.license = 'Apache-2.0'
|
||||
|
||||
spec.files = %w{
|
||||
README.md Rakefile MAINTAINERS.md LICENSE inspec.gemspec
|
||||
Gemfile CHANGELOG.md .rubocop.yml
|
||||
} + Dir.glob(
|
||||
spec.files = %w{README.md LICENSE} + Dir.glob(
|
||||
'{bin,lib,etc}/**/*', File::FNM_DOTMATCH
|
||||
).reject { |f| File.directory?(f) }
|
||||
|
||||
|
|
Loading…
Reference in a new issue