class Github::Orgs::Teams

def get(team_name, params={})


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

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