certmaker 0.0.3 → 0.0.4

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.
Files changed (3) hide show
  1. data/bin/certmaker +3 -2
  2. data/samples/config.yml +1 -1
  3. metadata +19 -27
@@ -266,9 +266,10 @@ end
266
266
 
267
267
 
268
268
  def remove_passphrases
269
- instruct "Removing passphrase"
269
+ instruct "Removing passphrase (if any)"
270
270
 
271
- puts `openssl rsa -in #{crt_filepath} -out #{cert_nopass_filepath}`
271
+ # Suppress error output, private key may not exist
272
+ puts `openssl rsa -in #{crt_filepath} -out #{cert_nopass_filepath} 2> /dev/null`
272
273
 
273
274
  puts `openssl x509 -in #{crt_filepath} >> #{cert_nopass_filepath}`
274
275
 
@@ -1,3 +1,3 @@
1
1
  ordered_chain_filenames:
2
2
  # eg. For Namecheap
3
- # ordered_chain_filenames: [PositiveSSLCA.crt, UTNAddTrustServerCA.crt, AddTrustExternalCARoot.crt]
3
+ # ordered_chain_filenames: [PositiveSSLCA2.crt, AddTrustExternalCARoot.crt]
metadata CHANGED
@@ -1,27 +1,23 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: certmaker
3
- version: !ruby/object:Gem::Version
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.4
4
5
  prerelease:
5
- version: 0.0.3
6
6
  platform: ruby
7
- authors:
7
+ authors:
8
8
  - Declan McGrath
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
-
13
- date: 2012-01-18 00:00:00 Z
12
+ date: 2012-06-30 00:00:00.000000000Z
14
13
  dependencies: []
15
-
16
14
  description: Easy way to make SSL Certs suitable for cloud platforms
17
15
  email: declan@toothsuite.com
18
- executables:
16
+ executables:
19
17
  - certmaker
20
18
  extensions: []
21
-
22
19
  extra_rdoc_files: []
23
-
24
- files:
20
+ files:
25
21
  - bin/certmaker
26
22
  - samples/config.yml
27
23
  - LICENSE
@@ -29,30 +25,26 @@ files:
29
25
  - history.txt
30
26
  homepage: http://rubygems.org/gems/certmaker
31
27
  licenses: []
32
-
33
28
  post_install_message:
34
29
  rdoc_options: []
35
-
36
- require_paths:
30
+ require_paths:
37
31
  - lib
38
- required_ruby_version: !ruby/object:Gem::Requirement
32
+ required_ruby_version: !ruby/object:Gem::Requirement
39
33
  none: false
40
- requirements:
41
- - - ">="
42
- - !ruby/object:Gem::Version
43
- version: "0"
44
- required_rubygems_version: !ruby/object:Gem::Requirement
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ required_rubygems_version: !ruby/object:Gem::Requirement
45
39
  none: false
46
- requirements:
47
- - - ">="
48
- - !ruby/object:Gem::Version
49
- version: "0"
40
+ requirements:
41
+ - - ! '>='
42
+ - !ruby/object:Gem::Version
43
+ version: '0'
50
44
  requirements: []
51
-
52
45
  rubyforge_project:
53
- rubygems_version: 1.7.2
46
+ rubygems_version: 1.8.10
54
47
  signing_key:
55
48
  specification_version: 3
56
49
  summary: Make SSL Certs suitable for cloud platforms
57
50
  test_files: []
58
-