Method: Methadone::ExecutionStrategy::Base#run_command

Defined in:
lib/methadone/execution_strategy/base.rb

#run_command(command) ⇒ Object

Executes the command and returns the results back. This should do no logging or other logic other than to execute the command and return the required results. If command is an array, use exec directly bypassing any tokenization, shell or otherwise; otherwise use the normal shell interpretation of the command string.

command

the command-line to run, as an Array or a String

Returns an array of size 3:

[0]

The standard output of the command as a String, never nil

[1]

The standard error output of the command as a String, never nil

[2]

A Process::Status-like objects that responds to exitstatus which returns the exit code of the command (e.g. 0 for success).



20
21
22
# File 'lib/methadone/execution_strategy/base.rb', line 20

def run_command(command)
  subclass_must_implement!
end