summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2017-07-06 22:47:47 -0700
committerTim Smith <tsmith@chef.io>2017-07-06 22:47:47 -0700
commit412d03b32d9dd4070374b18191204c44dbfe1c8f (patch)
treea6b5aba023e55d6cb19a5a6c4079d1e370b5a534
parented60cc2ec66a8547324605d77fbbed39bf773f4b (diff)
downloadchef-full_dsl_deprecation.tar.gz
Remove FullDSL module in recipe DSLfull_dsl_deprecation
We said we'd remove this in Chef 13. Do it in 14. Nothing on Supermarket uses this. Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--lib/chef/dsl/recipe.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/chef/dsl/recipe.rb b/lib/chef/dsl/recipe.rb
index dedf291857..77197f50eb 100644
--- a/lib/chef/dsl/recipe.rb
+++ b/lib/chef/dsl/recipe.rb
@@ -74,12 +74,6 @@ class Chef
def exec(args)
raise Chef::Exceptions::ResourceNotFound, "exec was called, but you probably meant to use an execute resource. If not, please call Kernel#exec explicitly. The exec block called was \"#{args}\""
end
-
- # @deprecated Use Chef::DSL::Recipe instead, will be removed in Chef 13
- module FullDSL
- include Chef::DSL::Recipe
- extend Chef::Mixin::LazyModuleInclude
- end
end
end
end