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