class Github::Client::Authorizations

def list(*args)

Other tags:
    Api: - public

Other tags:
    See: https://developer.github.com/v3/oauth_authorizations/#list-your-authorizations -
def list(*args)
  raise_authentication_error unless authenticated?
  arguments(args)
  response = get_request('/authorizations', arguments.params)
  return response unless block_given?
  response.each { |el| yield el }
end