Sha256: 6886189dcfbdda5cb1b88051a006010c4c921543b0b7dfdf45f5b8b804167416

Contents?: true

Size: 417 Bytes

Versions: 1

Compression:

Stored size: 417 Bytes

Contents

# frozen_string_literal: true

module RubyGPG2
  module Commands
    module Mixins
      module InputConfig
        private

        def configure_command(builder, parameters)
          input_file_path = parameters[:input_file_path]

          builder = super(builder, parameters)
          builder = builder.with_argument(input_file_path) if input_file_path
          builder
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ruby_gpg2-0.11.0.pre.5 lib/ruby_gpg2/commands/mixins/input_config.rb