class Github::Scopes
def list(params={})
github.scopes.all
github = Github.new :oauth_token => 'token'
= Examples
Check what OAuth scopes you have.
def list(params={}) response = get_request("/user", params) response.oauth_scopes ? response.oauth_scopes.split(',') : response end