ruby_easy_rsa 0.2.0.pre.7 → 0.2.0.pre.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0ce9d45885d9c0236d943fc8473c484c7714faf56d29965700bb1834283a1804
4
- data.tar.gz: c5012987c4df9b6ab8c4d141c06d10080fe6875119684163bad833760788d275
3
+ metadata.gz: f42e62c92a9a85288c93a74f2fc7fa09f1cbc126535d9d564bc79c281b5f2c2c
4
+ data.tar.gz: d6cefdc1c5f8abd649a9b83fbd7ed160fb6b826268cbe4b318a481bf20bdfdd7
5
5
  SHA512:
6
- metadata.gz: 9f5ac119b5cc91e124a3b21eefd5f9487879eb13f7bc6ac382847b97c8391dd059749d80af7585bde5a0a603dcc66d6b2c2641f273f7d4fc294e6d595dcf583e
7
- data.tar.gz: 99920f96ba7c782bc31a149270ae87a6157775fce154e26312f0992fb73ac3576a21c1986e6cac73f4c2a71e846b3c0c4194d38ccca05acfca19651e7b5d7140
6
+ metadata.gz: 29e2e303a61623f4be0573baf5c7509c94e774fd11a25c50c77b84264bb2e5b05bd06830756b61f545efe3530af3c987935f7f1c2d6afeff5174f63df4b05b01
7
+ data.tar.gz: dda071b44f8a9475209eb491f33c6f9cbde5415886e65509db07c1bf48ec88bc624a55eae3ea08c8beb3af561870968bf0749db55e3d993c571643d3dae1a898
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ruby_easy_rsa (0.2.0.pre.7)
4
+ ruby_easy_rsa (0.2.0.pre.8)
5
5
  lino (= 1.2.0.pre.2)
6
6
 
7
7
  GEM
@@ -0,0 +1,20 @@
1
+ require 'lino'
2
+
3
+ require_relative 'base'
4
+ require_relative 'mixins/global_config'
5
+ require_relative 'mixins/ssl_config'
6
+
7
+ module RubyEasyRSA
8
+ module Commands
9
+ class GenCRL < Base
10
+ include Mixins::GlobalConfig
11
+ include Mixins::SSLConfig
12
+
13
+ def configure_command(builder, opts)
14
+ builder = builder.with_subcommand('gen-crl')
15
+ builder = super(builder, opts)
16
+ builder
17
+ end
18
+ end
19
+ end
20
+ end
@@ -0,0 +1,20 @@
1
+ require 'lino'
2
+
3
+ require_relative 'base'
4
+ require_relative 'mixins/global_config'
5
+ require_relative 'mixins/ssl_config'
6
+
7
+ module RubyEasyRSA
8
+ module Commands
9
+ class UpdateDB < Base
10
+ include Mixins::GlobalConfig
11
+ include Mixins::SSLConfig
12
+
13
+ def configure_command(builder, opts)
14
+ builder = builder.with_subcommand('update-db')
15
+ builder = super(builder, opts)
16
+ builder
17
+ end
18
+ end
19
+ end
20
+ end
@@ -6,6 +6,8 @@ require_relative 'commands/sign_req'
6
6
  require_relative 'commands/build_client_full'
7
7
  require_relative 'commands/build_server_full'
8
8
  require_relative 'commands/revoke'
9
+ require_relative 'commands/gen_crl'
10
+ require_relative 'commands/update_db'
9
11
 
10
12
  module RubyEasyRSA
11
13
  module Commands
@@ -1,3 +1,3 @@
1
1
  module RubyEasyRSA
2
- VERSION = '0.2.0.pre.7'
2
+ VERSION = '0.2.0.pre.8'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby_easy_rsa
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0.pre.7
4
+ version: 0.2.0.pre.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Toby Clemson
@@ -162,6 +162,7 @@ files:
162
162
  - lib/ruby_easy_rsa/commands/build_ca.rb
163
163
  - lib/ruby_easy_rsa/commands/build_client_full.rb
164
164
  - lib/ruby_easy_rsa/commands/build_server_full.rb
165
+ - lib/ruby_easy_rsa/commands/gen_crl.rb
165
166
  - lib/ruby_easy_rsa/commands/gen_dh.rb
166
167
  - lib/ruby_easy_rsa/commands/gen_req.rb
167
168
  - lib/ruby_easy_rsa/commands/init_pki.rb
@@ -175,6 +176,7 @@ files:
175
176
  - lib/ruby_easy_rsa/commands/mixins/sub_ca_config.rb
176
177
  - lib/ruby_easy_rsa/commands/revoke.rb
177
178
  - lib/ruby_easy_rsa/commands/sign_req.rb
179
+ - lib/ruby_easy_rsa/commands/update_db.rb
178
180
  - lib/ruby_easy_rsa/version.rb
179
181
  - ruby_easy_rsa.gemspec
180
182
  - scripts/ci/common/configure-git.sh