class RubyGPG2::Commands::GenerateKey
Public Instance Methods
configure_command(builder, opts)
click to toggle source
Calls superclass method
RubyGPG2::Commands::Mixins::WithoutPassphrase#configure_command
# File lib/ruby_gpg2/commands/generate_key.rb, line 25 def configure_command(builder, opts) parameter_file_path = opts[:parameter_file_path] builder = builder.with_subcommand('--generate-key') builder = super(builder, opts) builder = builder.with_argument(parameter_file_path) if parameter_file_path builder end