Sha256: e948d891c87532441ac9881d04861bd11e11feb88472287c6df9476969b42507
Contents?: true
Size: 446 Bytes
Versions: 1
Compression:
Stored size: 446 Bytes
Contents
# frozen_string_literal: true module Pennyworth module CLI module Actions # Handles the encodings action. class Encodings include Pennyworth::Import[:kernel] def initialize(processor: Processor.for_encodings, **) 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/encodings.rb |