Class: Really::Drivers::Local
- Inherits:
-
DriverBase
- Object
- DriverBase
- Really::Drivers::Local
- Defined in:
- lib/really/drivers/local.rb
Instance Attribute Summary
Attributes inherited from DriverBase
Instance Method Summary collapse
-
#initialize(*args) ⇒ Local
constructor
A new instance of Local.
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 |