Sha256: f9a61612ac288ea823009deab5e51a9ddce2c06e406ae7adf5e9f8e38a6006fa
Contents?: true
Size: 465 Bytes
Versions: 8
Compression:
Stored size: 465 Bytes
Contents
# frozen_string_literal: true module RubyGPG2 module Commands module Mixins module OutputConfig def configure_command(builder, opts) output_file_path = opts[:output_file_path] builder = super(builder, opts) if output_file_path builder = builder.with_option( '--output', output_file_path, quoting: '"' ) end builder end end end end end
Version data entries
8 entries across 8 versions & 1 rubygems