Method: Aruba::CommandMonitor#all_stderr

Defined in:
lib/aruba/command_monitor.rb

#all_stderrString

Get stderr of all commands

Returns:

  • (String)

    The stderr of all command which have run before



108
109
110
111
112
# File 'lib/aruba/command_monitor.rb', line 108

def all_stderr
  registered_commands.each(&:stop)

  registered_commands.map(&:stderr).join
end