Sha256: e850a1fa94b70420ef15b578eff92c5d4fde4aedeb50dfa55e55b5af8ffb92bf
Contents?: true
Size: 660 Bytes
Versions: 10
Compression:
Stored size: 660 Bytes
Contents
# frozen_string_literal: true module Esse # Type is actually deprecated. Elasticsearch today uses _doc instead of type # And in upcoming release it will be totally removed. # But I want to keep compatibility with old versions of es. class Repository class << self # This methods will be defined using meta programming in the index respository definition # @see Esse::Index::Type.repository attr_reader :index end require_relative 'repository/actions' require_relative 'repository/documents' require_relative 'repository/object_document_mapper' require_relative 'repository/lazy_document_attributes' end end
Version data entries
10 entries across 10 versions & 1 rubygems