Sha256: 3b61b99a220c6dd2ce065a98ef569581c4791a92ce029e0457b3cf3ae9de8544
Contents?: true
Size: 500 Bytes
Versions: 1
Compression:
Stored size: 500 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] builder = super(builder, parameters) if output_file_path builder = builder.with_option( '--output', output_file_path, quoting: '"' ) end 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/output_config.rb |