class Devpad::CLI::Account

Public Instance Methods

current() click to toggle source
# File lib/devpad/cli/account.rb, line 5
def current
  Devpad::CLI::Commands::Account::Current.new(shell: shell).execute
end
list() click to toggle source
# File lib/devpad/cli/account.rb, line 15
def list
  Devpad::CLI::Commands::Account::List.new(shell: shell).execute
end
select() click to toggle source
# File lib/devpad/cli/account.rb, line 10
def select
  Devpad::CLI::Commands::Account::Select.new(shell: shell).execute
end
users() click to toggle source
# File lib/devpad/cli/account.rb, line 20
def users
  Devpad::CLI::Commands::Account::Users.new(shell: shell).execute
end