module Github::Orgs::Teams

def team(team_name, params={})


@github.orgs.team 'team-name'
@github = Github.new :oauth_token => '...'
= Examples

Get a team
def team(team_name, params={})
  _validate_presence_of team_name
  _normalize_params_keys(params)
  get("/teams/#{team_name}", params)
end