Class: Really::Drivers::Local

Inherits:
DriverBase show all
Defined in:
lib/really/drivers/local.rb

Instance Attribute Summary

Attributes inherited from DriverBase

#role_names

Instance Method Summary collapse

Methods inherited from DriverBase

#close, #execute_task, #open, #roles, #to_s

Constructor Details

#initialize(*args) ⇒ Local

Returns a new instance of Local.



6
7
8
9
10
# File 'lib/really/drivers/local.rb', line 6

def initialize(*args)
  # Super does an instance_eval on the given block, so we need to call
  # super *after* setting up our internal state.
  super *args
end