class Github::Authorizations
def authorizations(params={})
@github.oauth.authorizations { |auth| ... }
@github.oauth.authorizations
@github = Github.new :basic_auth => 'login:password'
= Examples
List authorizations
def authorizations(params={}) _check_if_authenticated _normalize_params_keys(params) response = get("/authorizations", params) return response unless block_given? response.each { |el| yield el } end