class Github::Orgs::Teams

def delete(*args)


github.orgs.teams.delete 'team-id'
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(*args)
  arguments(args, :required => [:team_id])
  delete_request("/teams/#{team_id}", arguments.params)
end