class Github::Orgs::Teams
def delete(team_name, params={})
github.orgs.teams.delete 'team-name'
github = Github.new :oauth_token => '...'
= Examples
In order to delete a team, the authenticated user must be an owner of the org that the team is associated with
Delete a team
def delete(team_name, params={}) _validate_presence_of team_name normalize! params delete_request("/teams/#{team_name}", params) end