module Chione::Inspection

An extensible inspect for Chione objects.

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 96
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 106
def inspect_details
        return ''
end