summaryrefslogtreecommitdiff
path: root/lib/chef/recipe.rb
diff options
context:
space:
mode:
authorLamont Granquist <lamont@opscode.com>2012-12-05 10:55:58 -0800
committerLamont Granquist <lamont@opscode.com>2012-12-19 15:56:09 -0800
commit54c19e58606fccafb1368c3c887cc7239b4c5d72 (patch)
tree4b03a71bf168ed6eee795de416c3c8d4e649bd9f /lib/chef/recipe.rb
parent5e160e31752951d9f1b7dd84d0e2e33553582158 (diff)
downloadchef-54c19e58606fccafb1368c3c887cc7239b4c5d72.tar.gz
moving registry_helper to dsl class
Diffstat (limited to 'lib/chef/recipe.rb')
-rw-r--r--lib/chef/recipe.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/recipe.rb b/lib/chef/recipe.rb
index 3571d1eb34..6ea69360b8 100644
--- a/lib/chef/recipe.rb
+++ b/lib/chef/recipe.rb
@@ -22,11 +22,11 @@ require 'chef/dsl/recipe'
require 'chef/dsl/data_query'
require 'chef/dsl/platform_introspection'
require 'chef/dsl/include_recipe'
+require 'chef/dsl/registry_helper'
require 'chef/mixin/from_file'
require 'chef/mixin/deprecation'
-require 'chef/mixin/registry_helper'
class Chef
# == Chef::Recipe
@@ -37,10 +37,10 @@ class Chef
include Chef::DSL::PlatformIntrospection
include Chef::DSL::IncludeRecipe
include Chef::DSL::Recipe
+ include Chef::DSL::RegistryHelper
include Chef::Mixin::FromFile
include Chef::Mixin::Deprecation
- include Chef::Mixin::RegistryHelper
attr_accessor :cookbook_name, :recipe_name, :recipe, :params, :run_context