Method: Chef::Formatters::Minimal#initialize

Defined in:
lib/chef/formatters/minimal.rb

#initialize(out, err) ⇒ Minimal

Returns a new instance of Minimal.



24
25
26
27
28
# File 'lib/chef/formatters/minimal.rb', line 24

def initialize(out, err)
  super
  @updated_resources = []
  @updates_by_resource = Hash.new {|h, k| h[k] = []}
end