class Cheffish::BasicChefClient::BasicChefClientEvents

Attributes

updates[R]

Public Class Methods

new() click to toggle source
# File lib/cheffish/basic_chef_client.rb, line 155
def initialize
  @updates = []
end

Public Instance Methods

resource_updated(resource, action) click to toggle source

Called after a resource has been completely converged.

# File lib/cheffish/basic_chef_client.rb, line 162
def resource_updated(resource, action)
  updates << [ resource, action ]
end