Sha256: f7d4b7419ed7ee39ddc336d8ea35a74953c188ed26a553abd3b9e86d8a886fef
Contents?: true
Size: 461 Bytes
Versions: 1
Compression:
Stored size: 461 Bytes
Contents
# frozen_string_literal: true module Pennyworth module CLI module Actions # Handles the system errors action. class StandardErrors include Pennyworth::Import[:kernel] def initialize(processor: Processor.for_standard_errors, **) super(**) @processor = processor end def call = kernel.puts processor.call.to_json private attr_reader :processor end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pennyworth-14.3.0 | lib/pennyworth/cli/actions/standard_errors.rb |