Sha256: ee5f16fe5b2a1675967c48242d409fbf619330f4b648b9c863d4e2749066d64a
Contents?: true
Size: 214 Bytes
Versions: 29
Compression:
Stored size: 214 Bytes
Contents
# frozen_string_literals: true module Lumberjack class Formatter # Format an object by calling +inspect+ on it. class InspectFormatter def call(obj) obj.inspect end end end end
Version data entries
29 entries across 29 versions & 5 rubygems