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