class Github::Client::Orgs

def list(*args)

Other tags:
    Api: - public
def list(*args)
  params = arguments(args).params
  response = if (user_name = params.delete("user"))
    get_request("/users/#{user_name}/orgs", params)
  else
    # For the authenticated user
    get_request("/user/orgs", params)
  end
  return response unless block_given?
  response.each { |el| yield el }
end