class Github::Orgs::Teams

def list_repos(*args)


github.orgs.teams.list_repos 'team-id'
github = Github.new :oauth_token => '...'
= Examples

List team repositories
def list_repos(*args)
  arguments(args, :required => [:team_id])
  response = get_request("/teams/#{team_id}/repos", arguments.params)
  return response unless block_given?
  response.each { |el| yield el }
end