module Ellipses::Support::Shell

Constants

Result

Public Instance Methods

dummy_result(args = []) click to toggle source
# File lib/ellipses/support/shell.rb, line 80
def dummy_result(args = [])
  Result.new args, [], [], 0
end
fake(*args) click to toggle source
# File lib/ellipses/support/shell.rb, line 76
def fake(*args)
  dummy_result(args)
end
run(*args) click to toggle source
# File lib/ellipses/support/shell.rb, line 72
def run(*args)
  Runner.new.run(*args)
end