ssltool 0.0.11 → 0.0.12

Sign up to get free protection for your applications and to get access to all the features.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ssltool
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.11
4
+ version: 0.0.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Caio Chassot
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-04-19 00:00:00.000000000 Z
11
+ date: 2016-02-22 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Orders and completes SSL certificate trust chains, maintains an up-to-date
14
14
  pool of viable intermediates and trusted roots, and provides other tooling for dealing
@@ -23,9 +23,9 @@ files:
23
23
  - bin/bootstrap-trusted-pems-from-mozilla-certdata
24
24
  - bin/console
25
25
  - bin/ssltool-complete-chain
26
- - bin/ssltool-dbpool-from-fspool
27
26
  - bin/ssltool-filter-certs
28
27
  - bin/ssltool-print-certs-info
28
+ - bin/ssltool-transfer-store
29
29
  - lib/ssltool.rb
30
30
  - lib/ssltool/adapters/base.rb
31
31
  - lib/ssltool/adapters/filesystem.rb
@@ -40,7 +40,8 @@ files:
40
40
  - var/pools/intermediate.pem
41
41
  - var/pools/trusted.pem
42
42
  homepage: https://github.com/heroku/ssltool
43
- licenses: []
43
+ licenses:
44
+ - MIT
44
45
  metadata: {}
45
46
  post_install_message:
46
47
  rdoc_options: []
@@ -48,18 +49,19 @@ require_paths:
48
49
  - lib
49
50
  required_ruby_version: !ruby/object:Gem::Requirement
50
51
  requirements:
51
- - - ! '>='
52
+ - - ">="
52
53
  - !ruby/object:Gem::Version
53
54
  version: '0'
54
55
  required_rubygems_version: !ruby/object:Gem::Requirement
55
56
  requirements:
56
- - - ! '>='
57
+ - - ">="
57
58
  - !ruby/object:Gem::Version
58
59
  version: '0'
59
60
  requirements: []
60
61
  rubyforge_project:
61
- rubygems_version: 2.0.3
62
+ rubygems_version: 2.5.1
62
63
  signing_key:
63
64
  specification_version: 4
64
65
  summary: Orders and completes SSL certificate trust chains, plus more.
65
66
  test_files: []
67
+ has_rdoc:
@@ -1,13 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # encoding: UTF-8
3
-
4
- require_relative "../lib/ssltool/certificate_store"
5
- require_relative "../lib/ssltool/adapters/filesystem"
6
- require_relative "../lib/ssltool/adapters/sequel"
7
-
8
- fs_store = SSLTool::CertificateStore::FilesystemAdapter.new "var/pools"
9
- db_store = SSLTool::CertificateStore::SequelAdapter.new "sqlite://var/pools/store.sqlite"
10
-
11
- %w[ excluded intermediate trusted ].each do |pool|
12
- db_store.store_pool(pool, fs_store.load_pool(pool))
13
- end