Sha256: 9669e16124ee0f72ba84a77dfc73cbe39d2a89673682d0d0d890a089b2ac8d0f
Contents?: true
Size: 511 Bytes
Versions: 9
Compression:
Stored size: 511 Bytes
Contents
# frozen_string_literal: true module Pennyworth module CLI module Actions # Handles the text action. class Text def initialize processor: Processor.for_text, container: Container @processor = processor @container = container end def call(content) = processor.call(content).to_json.then { |json| logger.info json } private attr_reader :processor, :container def logger = container[__method__] end end end end
Version data entries
9 entries across 9 versions & 1 rubygems