diff options
author | Nathan Williams <nathan@teamtreehouse.com> | 2015-10-04 21:31:19 -0700 |
---|---|---|
committer | Steven Murawski <steven.murawski@gmail.com> | 2015-10-21 10:07:36 -0500 |
commit | ceeb47d54736673aac2a3c11c89b6580406197f0 (patch) | |
tree | aeb72a783b4d1b66168261b69c7b614c11a4262e | |
parent | 3deff0b4f5d483eadbdf902806ee0cdbd61ad29c (diff) | |
download | chef-ceeb47d54736673aac2a3c11c89b6580406197f0.tar.gz |
add missing requires for Chef::DSL::Recipe
-rw-r--r-- | lib/chef/provider/lwrp_base.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/chef/provider/lwrp_base.rb b/lib/chef/provider/lwrp_base.rb index a96c382a01..9c7cd15bbf 100644 --- a/lib/chef/provider/lwrp_base.rb +++ b/lib/chef/provider/lwrp_base.rb @@ -19,6 +19,7 @@ # require 'chef/provider' +require 'chef/dsl/recipe' require 'chef/dsl/include_recipe' class Chef |