summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Wrock <matt@mattwrock.com>2016-01-25 15:04:48 -0800
committerMatt Wrock <matt@mattwrock.com>2016-01-25 15:04:48 -0800
commitb4af15e935e1aa179ee79ffd626eccbce0e119d6 (patch)
tree5b62b95c0ce9cd11ae84aa473d1411bd749aedc7
parent1ba3dd01fa0227280747d3d63a979607b8b28bb2 (diff)
downloadchef-mwrock/appveyor.tar.gz
use require_paths and not path so bundler grabs all paths from a git referencemwrock/appveyor
-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