summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Wrock <matt@mattwrock.com>2016-01-25 15:52:19 -0800
committerMatt Wrock <matt@mattwrock.com>2016-01-25 15:52:19 -0800
commitc502256d143c78134143540502b1db9ad2a3f73c (patch)
tree5b62b95c0ce9cd11ae84aa473d1411bd749aedc7
parent1ba3dd01fa0227280747d3d63a979607b8b28bb2 (diff)
parentb4af15e935e1aa179ee79ffd626eccbce0e119d6 (diff)
downloadchef-c502256d143c78134143540502b1db9ad2a3f73c.tar.gz
Merge pull request #4459 from chef/mwrock/appveyor
use require_paths and not path so bundler grabs all paths from a git reference
-rw-r--r--chef.gemspec2
1 files changed, 1 insertions, 1 deletions
diff --git a/chef.gemspec b/chef.gemspec
index 7df1571f29..818e654a4b 100644
--- a/chef.gemspec
+++ b/chef.gemspec
@@ -54,6 +54,6 @@ Gem::Specification.new do |s|
s.bindir = "bin"
s.executables = %w{ chef-client chef-solo knife chef-shell chef-apply }
- s.require_path = %w{ lib lib-backcompat }
+ s.require_paths = %w{ lib lib-backcompat }
s.files = %w{Gemfile Rakefile LICENSE README.md CONTRIBUTING.md} + Dir.glob("{distro,lib,lib-backcompat,tasks,spec}/**/*", File::FNM_DOTMATCH).reject {|f| File.directory?(f) } + Dir.glob("*.gemspec")
end