class Heroku::CLI

Public Class Methods

start(*args) click to toggle source
# File lib/heroku/cli.rb, line 6
def self.start(*args)
  command = args.shift.strip rescue "help"
  Heroku::Command.load
  Heroku::Command.run(command, args)
end