module Elasticsearch::Persistence::Repository::DSL

Include this module to get class-level methods for repository configuration.

@since 6.0.0

Public Class Methods

included(base) click to toggle source
# File lib/elasticsearch/persistence/repository/dsl.rb, line 26
def self.included(base)
  base.send(:extend, Elasticsearch::Model::Indexing::ClassMethods)
  base.send(:extend, ClassMethods)
end