class RubyGPG2::Commands::ExportSecretKeys
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/export_secret_keys.rb, line 23 def configure_command(builder, opts) names = opts[:names] || [] builder = super(builder, opts) builder = builder.with_subcommand('--export-secret-keys') names.each do |name| builder = builder.with_argument(name) end builder end