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
 96 def inspect
 97     return "#<%p:%#016x %s>" % [
 98         self.class,
 99         self.object_id * 2,
100         self.inspect_details,
101     ]
102 end
inspect_details()

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

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