Sha256: e8652b663cc9661afca2cf5cbdc3fd6e882051852708175acac939bdc3cb3268
Contents?: true
Size: 546 Bytes
Versions: 13
Compression:
Stored size: 546 Bytes
Contents
# frozen_string_literal: true module Pennyworth module CLI module Actions module System # Handles the signal action. class Signals include Pennyworth::Import[:logger] def initialize processor: Processor.for_system_signals, **dependencies super(**dependencies) @processor = processor end def call = processor.call.to_json.then { |json| logger.info { json } } private attr_reader :processor end end end end end
Version data entries
13 entries across 13 versions & 1 rubygems