class Github::Orgs::Teams
def get(*args)
github.orgs.teams.get 'team-id'
github = Github.new :oauth_token => '...'
= Examples
Get a team
def get(*args) arguments(args, :required => [:team_id]) get_request("/teams/#{team_id}", arguments.params) end
def get(*args) arguments(args, :required => [:team_id]) get_request("/teams/#{team_id}", arguments.params) end