module FeduxOrg module Stdlib module Command class CommandResult attr_accessor :stderr, :stdout, :status def initialize @stderr = '' @stdout = '' end end end end end