class ProcessExecuter::Result
@api public
The result of executing a command
def initialize(status, out, err)
-
(ProcessExecuter::Result)
- the result object
Parameters:
-
err
(String, nil
) -- the command's stderr (if collected) -
out
(String, nil
) -- the command's stdout (if collected) -
status
(Process::Status
) -- the status of the command process
def initialize(status, out, err) @status = status @out = out @err = err end