Method: Pike::SSH::Process#initialize
- Defined in:
- lib/pike/ssh/process.rb
#initialize(command) ⇒ Process
Returns a new instance of Process.
10 11 12 13 14 15 |
# File 'lib/pike/ssh/process.rb', line 10 def initialize(command) @stdout = '' @stderr = '' @exit_code = 0 @command = command end |