module Github::Orgs::Teams
def teams(org_name, params={})
@github.orgs.teams 'org-name'
@github = Github.new :oauth_token => '...'
= Examples
List teams
def teams(org_name, params={}) _validate_presence_of org_name _normalize_params_keys(params) get("/orgs/#{org_name}/teams", params) return response unless block_given? response.each { |el| yield el } end