diff options
author | Claire McQuin <claire@getchef.com> | 2015-01-14 11:40:48 -0800 |
---|---|---|
committer | Claire McQuin <claire@getchef.com> | 2015-01-15 15:34:33 -0800 |
commit | 4cbc6274889ddedf105ec99200f53b50439df273 (patch) | |
tree | e42d111f7f20f45377f0dbbdeb4e5ef377c9c9f0 /lib/chef/event_dispatch | |
parent | d1a70027b68b1ba6d36eea3bc38d5441a61f22f8 (diff) | |
download | chef-4cbc6274889ddedf105ec99200f53b50439df273.tar.gz |
Update DSL method name to controls_group.mcquin/control_group
Update to use control_group.
Unify wording along control_group.
Unify wording along control_group.
Fix typo.
Enable audit mode.
Update to use control_group syntax.
Update for audit DSL changes.
Update for audit DSL change.
Diffstat (limited to 'lib/chef/event_dispatch')
-rw-r--r-- | lib/chef/event_dispatch/base.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/chef/event_dispatch/base.rb b/lib/chef/event_dispatch/base.rb index 25dd9fd1b2..7274105802 100644 --- a/lib/chef/event_dispatch/base.rb +++ b/lib/chef/event_dispatch/base.rb @@ -248,15 +248,15 @@ class Chef def audit_phase_failed(exception) end - # Signifies the start of a `controls` block with a defined name + # Signifies the start of a `control_group` block with a defined name def control_group_started(name) end - # An example in a `controls` block completed successfully + # An example in a `control_group` block completed successfully def control_example_success(control_group_name, example_data) end - # An example in a `controls` block failed with the provided error + # An example in a `control_group` block failed with the provided error def control_example_failure(control_group_name, example_data, error) end |