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