Class | Chef::Recipe |
In: |
lib/chef/recipe.rb
|
Parent: | Object |
A Recipe object is the context in which Chef recipes are evaluated.
cookbook_name | [RW] | |
params | [RW] | |
recipe | [RW] | |
recipe_name | [RW] | |
run_context | [RW] |
Parses a potentially fully-qualified recipe name into its cookbook name and recipe short name.
For example:
"aws::elastic_ip" returns [:aws, "elastic_ip"] "aws" returns [:aws, "default"]
Returns true if the node is tagged with all of the supplied tags.
tags<Array>: | A list of tags |
true<TrueClass>: | If all the parameters are present |
false<FalseClass>: | If any of the parameters are missing |
Removes the list of tags from the node.
tags<Array>: | A list of tags |
tags<Array>: | The current list of run_context.node[:tags] |