Chione::

Inspection module

An extensible #inspect for Chione objects.

Public Instance Methods

inspect()

Return a human-readable representation of the object suitable for debugging.

    # File lib/chione/mixins.rb
 95 def inspect
 96     return "#<%p:%#016x %s>" % [
 97         self.class,
 98         self.object_id * 2,
 99         self.inspect_details,
100     ]
101 end
inspect_details()

Return the detail portion of the inspect output for this object.

    # File lib/chione/mixins.rb
105 def inspect_details
106     return ''
107 end