# File lib/aruba/api.rb, line 293
    def run_simple(cmd, fail_on_error=true)
      run(cmd) do |process|
        stop_process(process)
      end
      @timed_out = last_exit_status.nil?
      assert_exit_status(0) if fail_on_error
    end