Method: God::DriverOperation#initialize

Defined in:
lib/god/driver.rb

#initialize(task, name, args) ⇒ DriverOperation

Initialize a new DriverOperation.

task - The Task upon which to operate. name - The Symbol name of the method to call. args - The Array of arguments to send to the method.



76
77
78
79
80
81
# File 'lib/god/driver.rb', line 76

def initialize(task, name, args)
  super(0)
  @task = task
  @name = name
  @args = args
end