Sha256: 5f8983f6a148cc0047d8f883203f1be0c799d3021c39104665765537cca25de5
Contents?: true
Size: 500 Bytes
Versions: 7
Compression:
Stored size: 500 Bytes
Contents
module ObjectInspector # ObjectInspector::InspectorsHelper can be included into any object to # simplify the process of instantiating an ObjectInspector::Inspector and # generating the inspection output. module InspectorsHelper # Calls {ObjectInspector::Inspector.inspect} on the passed in `object`, # passing it the passed in `kargs` (keyword arguments). # # @return [String] def inspect(object = self, **kargs) Inspector.inspect(object, **kargs) end end end
Version data entries
7 entries across 7 versions & 1 rubygems