class Github::Orgs::Teams
def list_repos(team_name, params={})
github.orgs.teams.list_repos 'team-name'
github = Github.new :oauth_token => '...'
= Examples
List team repositories
def list_repos(team_name, params={}) _validate_presence_of team_name normalize! params response = get_request("/teams/#{team_name}/repos", params) return response unless block_given? response.each { |el| yield el } end