class Deis::Runner

Public Instance Methods

run() click to toggle source
# File lib/deis/runner.rb, line 5
def run
  command = args.shift
  status  = run_util(command, *args)
  exit status === false ? 1 : 0
end