Module: Mongoid::Inspection

Included in:
Components
Defined in:
lib/mongoid/inspection.rb

Overview

Contains the bahviour around inspecting documents via Object#inspect.

Instance Method Summary collapse

Instance Method Details

#inspectString

Returns the class name plus its attributes. If using dynamic fields will include those as well.

Examples:

Inspect the document.

person.inspect

Returns:

  • (String)

    A nice pretty string to look at.



15
16
17
18
19
# File 'lib/mongoid/inspection.rb', line 15

def inspect
  inspection = []
  inspection.concat(inspect_fields).concat(inspect_dynamic_fields)
  "#<#{self.class.name} _id: #{id}, #{inspection * ', '}>"
end