Class: Cheffish::ChefRun::EventSink

Inherits:
Object
  • Object
show all
Defined in:
lib/cheffish/chef_run.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeEventSink

Returns a new instance of EventSink.



131
132
133
# File 'lib/cheffish/chef_run.rb', line 131

def initialize
  @events = []
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(method, *args) ⇒ Object



137
138
139
# File 'lib/cheffish/chef_run.rb', line 137

def method_missing(method, *args)
  @events << [ method, *args ]
end

Instance Attribute Details

#eventsObject (readonly)

Returns the value of attribute events.



135
136
137
# File 'lib/cheffish/chef_run.rb', line 135

def events
  @events
end