module Chione::Inspection
Public Instance Methods
inspect()
click to toggle source
Return a human-readable representation of the object suitable for debugging.
# File lib/chione/mixins.rb, line 95 def inspect return "#<%p:%#016x %s>" % [ self.class, self.object_id * 2, self.inspect_details, ] end
inspect_details()
click to toggle source
Return the detail portion of the inspect output for this object.
# File lib/chione/mixins.rb, line 105 def inspect_details return '' end