class Sfctl::Commands::Account

Public Instance Methods

assignments(*) click to toggle source
# File lib/sfctl/commands/account.rb, line 13
def assignments(*)
  if options[:help]
    invoke :help, ['assignments']
  else
    require_relative 'account/assignments'
    Sfctl::Commands::Account::Assignments.new(options).execute
  end
end
info(*) click to toggle source
# File lib/sfctl/commands/account.rb, line 24
def info(*)
  if options[:help]
    invoke :help, ['info']
  else
    require_relative 'account/info'
    Sfctl::Commands::Account::Info.new(options).execute
  end
end