class Photish::CLI::Interface

Public Instance Methods

credits() click to toggle source
# File lib/photish/cli/interface.rb, line 14
def credits
  Photish::Command::Credits.new(options).execute
end
deploy() click to toggle source
# File lib/photish/cli/interface.rb, line 48
def deploy
  Photish::Command::Deploy.new(options).execute
end
generate() click to toggle source
# File lib/photish/cli/interface.rb, line 21
def generate
  Photish::Command::Generate.new(options).execute
end
host() click to toggle source
# File lib/photish/cli/interface.rb, line 34
def host
  Photish::Command::Host.new(options).execute
end
init() click to toggle source
# File lib/photish/cli/interface.rb, line 41
def init
  Photish::Command::Init.new(options).execute
end
version() click to toggle source
# File lib/photish/cli/interface.rb, line 9
def version
  Photish::Command::Version.new(options).execute
end
worker() click to toggle source
# File lib/photish/cli/interface.rb, line 27
def worker
  Photish::Command::Worker.new(options).execute
end