class FeduxOrgStdlib::Command::CommandResult

Result of command execution

Attributes

status[RW]
stderr[RW]
stdout[RW]

Public Class Methods

new() click to toggle source
# File lib/fedux_org_stdlib/command/command_result.rb, line 8
def initialize
  @stderr = ''
  @stdout = ''
end