class Cocaine::CommandLine::Output

Attributes

error_output[R]
output[R]

Public Class Methods

new(output = nil, error_output = nil) click to toggle source
# File lib/cocaine/command_line/output.rb, line 2
def initialize(output = nil, error_output = nil)
  @output = output
  @error_output = error_output
end

Public Instance Methods

to_s() click to toggle source
# File lib/cocaine/command_line/output.rb, line 9
def to_s
  output.to_s
end