summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc A. Paradise <marc.paradise@gmail.com>2021-04-30 13:29:19 -0400
committerMarc A. Paradise <marc.paradise@gmail.com>2021-04-30 13:29:19 -0400
commite937d24b8cc9bde1ba09e1f1c08dabdf8b43892c (patch)
tree7e18aa78b7c40ca898c6532d3cc24309beca261b
parentc9a750c9195dacac819de37f9e2526485fb577f5 (diff)
downloadchef-e937d24b8cc9bde1ba09e1f1c08dabdf8b43892c.tar.gz
Let knife ship its specs again
Now that they're no longer located in "../spec" we can pull them back in. Signed-off-by: Marc A. Paradise <marc.paradise@gmail.com>
-rw-r--r--knife/knife.gemspec2
1 files changed, 1 insertions, 1 deletions
diff --git a/knife/knife.gemspec b/knife/knife.gemspec
index 949bac552e..ea47d0d374 100644
--- a/knife/knife.gemspec
+++ b/knife/knife.gemspec
@@ -46,7 +46,7 @@ Gem::Specification.new do |s|
s.require_paths = %w{ lib }
s.files = %w{Gemfile Rakefile LICENSE knife.gemspec} +
- Dir.glob("lib/**/*", File::FNM_DOTMATCH).reject { |f| File.directory?(f) }
+ Dir.glob("{lib,spec}/**/*", File::FNM_DOTMATCH).reject { |f| File.directory?(f) }
s.metadata = {
"bug_tracker_uri" => "https://github.com/chef/chef/issues",