We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0277341 commit 723e432Copy full SHA for 723e432
elasticsearch-persistence/lib/elasticsearch/persistence/repository.rb
@@ -214,6 +214,18 @@ def index_exists?(*args)
214
super(index_name: index_name)
215
end
216
217
+ # Get the nicer formatted string for use in inspection.
218
+ #
219
+ # @example Inspect the repository.
220
+ # repository.inspect
221
222
+ # @return [ String ] The repository inspection.
223
224
+ # @since 6.0.0
225
+ def inspect
226
+ "#<#{self.class}:0x#{object_id} index_name=#{index_name} document_type=#{document_type} klass=#{klass}>"
227
+ end
228
+
229
private
230
231
def __get_class_value(_method_)
0 commit comments