class Pod::Command::Cache::Proxy::Auth::List

Public Class Methods

new(argv) click to toggle source
Calls superclass method
# File lib/cocoapods-cache-proxy/command/cache_proxy/auth/list.rb, line 16
def initialize(argv)
  init
  @silent = argv.flag?('silent', false)
  super
end

Public Instance Methods

print_auth(auth) click to toggle source
print_auths(auths) click to toggle source
run() click to toggle source
# File lib/cocoapods-cache-proxy/command/cache_proxy/auth/list.rb, line 26
def run
  auths = CPSH.get_all_auths
  print_auths(auths)
end
validate!() click to toggle source
Calls superclass method
# File lib/cocoapods-cache-proxy/command/cache_proxy/auth/list.rb, line 22
def validate!
  super
end