diff options
author | Tim Smith <tsmith@chef.io> | 2018-10-23 18:46:50 -0700 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2018-10-23 18:46:50 -0700 |
commit | 12b2e1d6eea25d4c589f37d1ddbed45d5a20d51f (patch) | |
tree | 445480455c8ef150fa355eeb473d1766b757a8e1 | |
parent | f816900753ae69ca71b33c4843db1a5ff9f4c4ed (diff) | |
download | mixlib-shellout-12b2e1d6eea25d4c589f37d1ddbed45d5a20d51f.tar.gz |
Don't ship rakefile/gemfile/gemspecsslim
We don't ship the specs. We're not running the tests on this gem.
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r-- | mixlib-shellout.gemspec | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mixlib-shellout.gemspec b/mixlib-shellout.gemspec index c161a81..0145759 100644 --- a/mixlib-shellout.gemspec +++ b/mixlib-shellout.gemspec @@ -18,6 +18,6 @@ Gem::Specification.new do |s| s.add_development_dependency "chefstyle" s.require_path = "lib" - s.files = %w{Gemfile Rakefile LICENSE README.md} + Dir.glob("*.gemspec") + + s.files = %w{LICENSE README.md} + Dir.glob("lib/**/*", File::FNM_DOTMATCH).reject { |f| File.directory?(f) } end |