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.



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

def initialize
  @updates = []
end

Instance Attribute Details

#updatesObject (readonly)

Returns the value of attribute updates.



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

def updates
  @updates
end

Instance Method Details

#resource_updated(resource, action) ⇒ Object

Called after a resource has been completely converged.



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

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