class Github::Authorizations

def list(*args)

Other tags:
    Api: - public
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