class Github::Orgs::Teams

def remove_member(*args)


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

note: This does not delete the user, it just remove them from the team.
the team is associated with.
have ‘admin’ permissions to the team or be an owner of the org that
In order to remove a user from a team, the authenticated user must

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