class Raykit::Command
def details
def details puts " exit_code: " + @exitstatus.to_s if @output.length > 0 @output.lines.each do |line| puts " " + line end end if @error.length > 0 @error.lines.each do |line| puts " " + line end end self end
def details puts " exit_code: " + @exitstatus.to_s if @output.length > 0 @output.lines.each do |line| puts " " + line end end if @error.length > 0 @error.lines.each do |line| puts " " + line end end self end