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
-
#inspect ⇒ String
Returns the class name plus its attributes.
Instance Method Details
#inspect ⇒ String
Returns the class name plus its attributes. If using dynamic fields will include those as well.
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 |