summaryrefslogtreecommitdiff
path: root/lib/chef/dsl
diff options
context:
space:
mode:
authordanielsdeleo <dan@opscode.com>2014-02-19 13:05:45 -0800
committerdanielsdeleo <dan@opscode.com>2014-02-19 13:55:40 -0800
commit0f16336630b9e86508ed19874e1f4747f9e7ab40 (patch)
treec1ebc5456fc5df4b5487f0e0c7bcbd64b272f2fb /lib/chef/dsl
parent0f934585e469700b5463dd3ece44fd61f4ff5ca1 (diff)
downloadchef-0f16336630b9e86508ed19874e1f4747f9e7ab40.tar.gz
Remove default implementation of Recipe DSL interface
Depending on the inheritance tree, the default implementations could incorrectly be preferred to the real ones.
Diffstat (limited to 'lib/chef/dsl')
-rw-r--r--lib/chef/dsl/recipe.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/lib/chef/dsl/recipe.rb b/lib/chef/dsl/recipe.rb
index c64291decc..ebf19c7f23 100644
--- a/lib/chef/dsl/recipe.rb
+++ b/lib/chef/dsl/recipe.rb
@@ -31,20 +31,6 @@ class Chef
include Chef::Mixin::ConvertToClassName
- # Default +cookbook_name+ implementation, always returns "none". This
- # should be overriden in including classes whenever a meaningful value
- # can be provided.
- def cookbook_name
- "none"
- end
-
- # Default +recipe_name+ implementation, always returns "none". This
- # should be overridden in including classes whenever a meaningful value
- # can be provided.
- def recipe_name
- "none"
- end
-
def method_missing(method_symbol, *args, &block)
# If we have a definition that matches, we want to use that instead. This should
# let you do some really crazy over-riding of "native" types, if you really want