Sha256: fa45411c029ed8e4ab7e1e3376ff3ac89067397fe0409115014b368d7bad524a

Contents?: true

Size: 668 Bytes

Versions: 18

Compression:

Stored size: 668 Bytes

Contents

require 'lino'

require_relative 'base'
require_relative 'mixins/global_config'
require_relative 'mixins/ssl_config'

module RubyEasyRSA
  module Commands
    class ExportP7 < Base
      include Mixins::GlobalConfig
      include Mixins::SSLConfig

      def configure_command(builder, opts)
        filename_base = opts[:filename_base]
        include_ca = opts[:include_ca].nil? ? true : opts[:include_ca]

        builder = super(builder, opts)
        builder = builder.with_subcommand('export-p7')
        builder = builder.with_argument(filename_base)
        builder = builder.with_argument('noca') unless include_ca
        builder
      end
    end
  end
end

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
ruby_easy_rsa-0.10.0.pre.7 lib/ruby_easy_rsa/commands/export_p7.rb
ruby_easy_rsa-0.10.0.pre.6 lib/ruby_easy_rsa/commands/export_p7.rb
ruby_easy_rsa-0.10.0.pre.5 lib/ruby_easy_rsa/commands/export_p7.rb
ruby_easy_rsa-0.10.0.pre.4 lib/ruby_easy_rsa/commands/export_p7.rb
ruby_easy_rsa-0.10.0.pre.3 lib/ruby_easy_rsa/commands/export_p7.rb
ruby_easy_rsa-0.10.0.pre.2 lib/ruby_easy_rsa/commands/export_p7.rb
ruby_easy_rsa-0.10.0.pre.1 lib/ruby_easy_rsa/commands/export_p7.rb
ruby_easy_rsa-0.9.0 lib/ruby_easy_rsa/commands/export_p7.rb
ruby_easy_rsa-0.8.0.pre.1 lib/ruby_easy_rsa/commands/export_p7.rb
ruby_easy_rsa-0.7.0 lib/ruby_easy_rsa/commands/export_p7.rb
ruby_easy_rsa-0.6.0.pre.2 lib/ruby_easy_rsa/commands/export_p7.rb
ruby_easy_rsa-0.6.0.pre.1 lib/ruby_easy_rsa/commands/export_p7.rb
ruby_easy_rsa-0.5.0 lib/ruby_easy_rsa/commands/export_p7.rb
ruby_easy_rsa-0.4.0.pre.1 lib/ruby_easy_rsa/commands/export_p7.rb
ruby_easy_rsa-0.3.0 lib/ruby_easy_rsa/commands/export_p7.rb
ruby_easy_rsa-0.2.0.pre.11 lib/ruby_easy_rsa/commands/export_p7.rb
ruby_easy_rsa-0.2.0.pre.10 lib/ruby_easy_rsa/commands/export_p7.rb
ruby_easy_rsa-0.2.0.pre.9 lib/ruby_easy_rsa/commands/export_p7.rb