class Github::Orgs::Teams

def remove_repo(*args)


github.orgs.teams.remove_repo 'team-id', 'user-name', 'repo-name'
github = Github.new :oauth_token => '...'
= Examples

note: This does not delete the repo, it just removes it from the team.
an owner of the org that the team is associated with.
In order to add a repo to a team, the authenticated user must be

Remove a team repository
def remove_repo(*args)
  arguments(args, :required => [:team_id, :user, :repo])
  delete_request("/teams/#{team_id}/repos/#{user}/#{repo}", arguments.params)
end