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.



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

def initialize
  @updates = []
end

Instance Attribute Details

#updatesObject (readonly)

Returns the value of attribute updates.



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

def updates
  @updates
end

Instance Method Details

#resource_updated(resource, action) ⇒ Object

Called after a resource has been completely converged.



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

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