Class: Cheffish::BasicChefClient::BasicChefClientEvents

Inherits:
Chef::EventDispatch::Base
  • Object
show all
Defined in:
lib/cheffish/basic_chef_client.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeBasicChefClientEvents

Returns a new instance of BasicChefClientEvents.



157
158
159
# File 'lib/cheffish/basic_chef_client.rb', line 157

def initialize
  @updates = []
end

Instance Attribute Details

#updatesObject (readonly)

Returns the value of attribute updates.



161
162
163
# File 'lib/cheffish/basic_chef_client.rb', line 161

def updates
  @updates
end

Instance Method Details

#resource_updated(resource, action) ⇒ Object

Called after a resource has been completely converged.



164
165
166
# File 'lib/cheffish/basic_chef_client.rb', line 164

def resource_updated(resource, action)
  updates << [ resource, action ]
end