diff options
author | Tim Smith <tsmith@chef.io> | 2019-11-21 11:02:11 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-21 11:02:11 -0800 |
commit | 8b7dcb11f9ac4d6ebca7b1c490bebccc1e7faf6f (patch) | |
tree | 2efb1e36e86dce9a324ec74e1782c958b7223548 | |
parent | e569a429fb5136d43aaada864607ebcf00b1c74f (diff) | |
parent | c48f98960b018874e7bdadd396416a1d4469b423 (diff) | |
download | ohai-8b7dcb11f9ac4d6ebca7b1c490bebccc1e7faf6f.tar.gz |
Merge pull request #1409 from chef/slim
Strip the Rakefile and specs from our gem artifact
-rw-r--r-- | VERSION | 2 | ||||
-rw-r--r-- | ohai.gemspec | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -1 +1 @@ -15.3.2
\ No newline at end of file +15.6.0 diff --git a/ohai.gemspec b/ohai.gemspec index d9c882e2..758ac95f 100644 --- a/ohai.gemspec +++ b/ohai.gemspec @@ -34,5 +34,5 @@ Gem::Specification.new do |s| s.executables = %w{ohai} s.require_path = "lib" - s.files = %w{LICENSE Gemfile Rakefile} + Dir.glob("*.gemspec") + Dir.glob("{docs,lib,spec}/**/*") + s.files = %w{LICENSE Gemfile} + Dir.glob("*.gemspec") + Dir.glob("lib/**/*") end |