Sha256: 693ed99df12a9aadba3f3e35263b53dabf956ea0991c2520dd4fdf2fd413e403

Contents?: true

Size: 265 Bytes

Versions: 5

Compression:

Stored size: 265 Bytes

Contents

# frozen_string_literal: true

module OnStrum
  module Logs
    module Formatter
      class Detailed < Base
        require 'amazing_print'

        def self.call(**log_data)
          ::Kernel.ap(arrange_attrs(**log_data))
        end
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
on_strum-logs-1.0.0 lib/on_strum/logs/formatter/detailed.rb
on_strum-logs-0.3.0 lib/on_strum/logs/formatter/detailed.rb
on_strum-logs-0.2.0 lib/on_strum/logs/formatter/detailed.rb
on_strum-logs-0.1.1 lib/on_strum/logs/formatter/detailed.rb
on_strum-logs-0.1.0 lib/on_strum/logs/formatter/detailed.rb