module RubyGPG2::Commands::Mixins::ColonConfig
Public Instance Methods
configure_command(builder, opts)
click to toggle source
Calls superclass method
# File lib/ruby_gpg2/commands/mixins/colon_config.rb, line 5 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