class Github::Authorizations

def list(params={})


github.oauth.list { |auth| ... }
github.oauth.list
github = Github.new :basic_auth => 'login:password'
= Examples

List authorizations
def list(params={})
  _check_if_authenticated
  normalize! params
  response = get_request("/authorizations", params)
  return response unless block_given?
  response.each { |el| yield el }
end