Sha256: cdec1cab11f24f6aefce341900fd7368250a274671236f2ddddbdda091ee81c6
Contents?: true
Size: 531 Bytes
Versions: 4
Compression:
Stored size: 531 Bytes
Contents
# frozen_string_literal: true 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
4 entries across 4 versions & 1 rubygems