Sha256: 837eebf20c60df3b1d3855d96fcc4b9201a6b90de09ecba36f17707940808c5f
Contents?: true
Size: 399 Bytes
Versions: 8
Compression:
Stored size: 399 Bytes
Contents
# frozen_string_literal: true module RubyGPG2 module Commands module Mixins module ColonConfig def configure_command(builder, opts) with_colons = opts[:with_colons].nil? ? true : opts[:with_colons] builder = super(builder, opts) builder = builder.with_flag('--with-colons') if with_colons builder end end end end end
Version data entries
8 entries across 8 versions & 1 rubygems