module RSpec::Support::ShellOut
def shell_out(*command)
def shell_out(*command) stdout, stderr, status = Open3.capture3(*command) return stdout, filter(stderr), status end
def shell_out(*command) stdout, stderr, status = Open3.capture3(*command) return stdout, filter(stderr), status end