module Github::Orgs::Teams

def team_repos(team_name, params={})


@github.orgs.team_repos 'team-name'
@github = Github.new :oauth_token => '...'
= Examples

List team repositories
def team_repos(team_name, params={})
  _validate_presence_of team_name, member_name
  _normalize_params_keys(params)
  response = get("/teams/#{team_name}/repos", params)
  return response unless block_given?
  response.each { |el| yield el }
end