diff options
author | Noah Kantrowitz <noah@coderanger.net> | 2015-07-22 14:10:09 -0700 |
---|---|---|
committer | Noah Kantrowitz <noah@coderanger.net> | 2015-07-22 14:10:09 -0700 |
commit | 37efaeea757b266c37280df5b2d4857fa6967815 (patch) | |
tree | 153a80282096a1a5c3396e2ae9da35e2f72d172a /lib/chef/event_dispatch | |
parent | 2c4d7c7cf40346ca8236054901c023f35e1300c9 (diff) | |
download | chef-37efaeea757b266c37280df5b2d4857fa6967815.tar.gz |
Make the doc formatter actually show what version of a cookbook is being used.
This has bugged me forever. It does change the API of the Formatter
system in a ~non-back-compat way but I don't think I've actually seen
any formatters outside of core Chef so how much do we want to worry
about this? We could write a shim in `Chef::EventDispatcher::Dispatcher`
to check the arity of the method if needed.
Diffstat (limited to 'lib/chef/event_dispatch')
-rw-r--r-- | lib/chef/event_dispatch/base.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/event_dispatch/base.rb b/lib/chef/event_dispatch/base.rb index 50aee63450..7ed871145b 100644 --- a/lib/chef/event_dispatch/base.rb +++ b/lib/chef/event_dispatch/base.rb @@ -118,8 +118,8 @@ class Chef def cookbook_sync_start(cookbook_count) end - # Called when cookbook +cookbook_name+ has been sync'd - def synchronized_cookbook(cookbook_name) + # Called when cookbook +cookbook+ has been sync'd + def synchronized_cookbook(cookbook) end # Called when an individual file in a cookbook has been updated |