Sha256: ff0efe0cddbf633ca4e9434e0cc912157c56f7a086e8e39da36329cb29b2a310
Contents?: true
Size: 535 Bytes
Versions: 7
Compression:
Stored size: 535 Bytes
Contents
# frozen_string_literal: true module RubyGPG2 module Commands module Mixins module ColonConfig private def parameter_defaults(parameters) with_colons = parameters[:with_colons] super.merge(with_colons: with_colons.nil? ? true : with_colons) end def configure_command(builder, parameters) with_colons = parameters[:with_colons] b = super b = b.with_flag('--with-colons') if with_colons b end end end end end
Version data entries
7 entries across 7 versions & 1 rubygems