Sha256: ea18c9ffbf1b4801802484031f98479f8482a8b5ff6955e083dd1aa258deed24

Contents?: true

Size: 419 Bytes

Versions: 7

Compression:

Stored size: 419 Bytes

Contents

# frozen_string_literal: true

module RubyGPG2
  module Commands
    module Mixins
      module RecipientConfig
        private

        def configure_command(builder, parameters)
          recipient = parameters[:recipient]

          b = super
          if recipient
            b = b.with_option(
              '--recipient', recipient
            )
          end
          b
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
ruby_gpg2-0.13.0.pre.4 lib/ruby_gpg2/commands/mixins/recipient_config.rb
ruby_gpg2-0.13.0.pre.3 lib/ruby_gpg2/commands/mixins/recipient_config.rb
ruby_gpg2-0.13.0.pre.2 lib/ruby_gpg2/commands/mixins/recipient_config.rb
ruby_gpg2-0.13.0.pre.1 lib/ruby_gpg2/commands/mixins/recipient_config.rb
ruby_gpg2-0.12.0 lib/ruby_gpg2/commands/mixins/recipient_config.rb
ruby_gpg2-0.11.0.pre.7 lib/ruby_gpg2/commands/mixins/recipient_config.rb
ruby_gpg2-0.11.0.pre.6 lib/ruby_gpg2/commands/mixins/recipient_config.rb