diff options
author | Lamont Granquist <lamont@opscode.com> | 2012-12-04 16:08:22 -0800 |
---|---|---|
committer | Lamont Granquist <lamont@opscode.com> | 2012-12-19 15:56:09 -0800 |
commit | 810bc82882625f13891fafb264539f9bf70a05de (patch) | |
tree | 75cfc92216de08106bfde20ef8fee3afa7b4bec6 /lib/chef/recipe.rb | |
parent | 49a086c7676acb7c3efd67d99d816513140f9220 (diff) | |
download | chef-810bc82882625f13891fafb264539f9bf70a05de.tar.gz |
adding registry helper for recipes+resources
Diffstat (limited to 'lib/chef/recipe.rb')
-rw-r--r-- | lib/chef/recipe.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/chef/recipe.rb b/lib/chef/recipe.rb index aca35db049..3571d1eb34 100644 --- a/lib/chef/recipe.rb +++ b/lib/chef/recipe.rb @@ -26,6 +26,7 @@ require 'chef/dsl/include_recipe' require 'chef/mixin/from_file' require 'chef/mixin/deprecation' +require 'chef/mixin/registry_helper' class Chef # == Chef::Recipe @@ -39,6 +40,7 @@ class Chef include Chef::Mixin::FromFile include Chef::Mixin::Deprecation + include Chef::Mixin::RegistryHelper attr_accessor :cookbook_name, :recipe_name, :recipe, :params, :run_context |