summaryrefslogtreecommitdiff
path: root/lib/chef/recipe.rb
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2016-03-16 10:58:58 -0700
committerLamont Granquist <lamont@scriptkiddie.org>2016-03-16 10:58:58 -0700
commit259b42cd77e91a0194e17bd2bee639f9240b3b75 (patch)
treeb7c906c54af8d84be92f1fa4557b98886785dacc /lib/chef/recipe.rb
parent17ca25869fd9e0ce0a4ec013a5dc39549ecaa6f7 (diff)
downloadchef-259b42cd77e91a0194e17bd2bee639f9240b3b75.tar.gz
deprecate Chef::DSL::Recipe::FullDSLlcg/deprecate-fulldsl
this module was created out of a bit of excessive paranoia instead of simply adding mixins that we always use with Chef::DSL::Recipe directly to Chef::DSL::Recipe. lets try and YAGNI this class and just add it directly. these modules are already injected into everyone's recipes and providers, so I can't imagine a huge amount of backcompat breaks.
Diffstat (limited to 'lib/chef/recipe.rb')
-rw-r--r--lib/chef/recipe.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/recipe.rb b/lib/chef/recipe.rb
index 55b6fd7d52..403d393fcd 100644
--- a/lib/chef/recipe.rb
+++ b/lib/chef/recipe.rb
@@ -35,7 +35,7 @@ class Chef
# A Recipe object is the context in which Chef recipes are evaluated.
class Recipe
- include Chef::DSL::Recipe::FullDSL
+ include Chef::DSL::Recipe
include Chef::Mixin::FromFile
include Chef::Mixin::Deprecation