class LocalCommand

Executes commands in the machine where it is called. See documentation for GenericCommand

Private Instance Methods

execute() click to toggle source
# File lib/CommandManager.rb, line 163
def execute
    Open3.popen3("#{command} ; echo ExitCode: $? 1>&2",
                    :pgroup => true)
end