class Appfront::Command::Alias

Public Class Methods

create(args, opts) click to toggle source
# File lib/appfront/command/alias.rb, line 22
def self.create(args, opts)
  Appfront::Command::Deploys.create args, opts
end
info(args, opts) click to toggle source
# File lib/appfront/command/alias.rb, line 26
def self.info(args, opts)
  Appfront::Command::Deploys.info opts
end
login(*opts) click to toggle source
# File lib/appfront/command/alias.rb, line 2
def self.login(*opts)
  Appfront::Command::Auth.login
end
logout(*opts) click to toggle source
# File lib/appfront/command/alias.rb, line 10
def self.logout(*opts)
  Appfront::Command::Auth.logout
end
ls(*opts) click to toggle source
# File lib/appfront/command/alias.rb, line 18
def self.ls(*opts)
  Appfront::Command::Deploys.ls
end
signup(*opts) click to toggle source
# File lib/appfront/command/alias.rb, line 6
def self.signup(*opts)
  Appfront::Command::Auth.signup
end
version(*opts) click to toggle source
# File lib/appfront/command/alias.rb, line 14
def self.version(*opts)
  puts 'Appfront CLI 1.1.2'
end