Sha256: b94ffbe92cbb1f3a54e1b16f155bb25d5d5c21a3e31e0378a288f012fd86b9ec

Contents?: true

Size: 569 Bytes

Versions: 7

Compression:

Stored size: 569 Bytes

Contents

# frozen_string_literal: true

module Pennyworth
  module CLI
    module Actions
      module System
        # Handles the system errors action.
        class Errors
          def initialize processor: Processor.for_system_errors, container: Container
            @processor = processor
            @container = container
          end

          def call = processor.call.to_json.then { |json| logger.info { json } }

          private

          attr_reader :processor, :container

          def logger = container[__method__]
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
pennyworth-12.3.1 lib/pennyworth/cli/actions/system/errors.rb
pennyworth-12.3.0 lib/pennyworth/cli/actions/system/errors.rb
pennyworth-12.2.0 lib/pennyworth/cli/actions/system/errors.rb
pennyworth-12.1.0 lib/pennyworth/cli/actions/system/errors.rb
pennyworth-12.0.2 lib/pennyworth/cli/actions/system/errors.rb
pennyworth-12.0.1 lib/pennyworth/cli/actions/system/errors.rb
pennyworth-12.0.0 lib/pennyworth/cli/actions/system/errors.rb