class Github::Orgs::Teams

def list(*args)


github.orgs.teams.list 'org-name'
github = Github.new :oauth_token => '...'
= Examples

List teams
def list(*args)
  arguments(args, :required => [:org_name])
  response = get_request("/orgs/#{org_name}/teams", arguments.params)
  return response unless block_given?
  response.each { |el| yield el }
end