Chione::
Inspection
module
An extensible #inspect for Chione objects.
Return a human-readable representation of the object suitable for debugging.
96 def inspect
97 return "#<%p:%#016x %s>" % [
98 self.class,
99 self.object_id * 2,
100 self.inspect_details,
101 ]
102 end
Return the detail portion of the inspect output for this object.
106 def inspect_details
107 return ''
108 end