ssl_info 1.0.0 → 1.0.1
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 +4 -4
- data/CHANGELOG.md +6 -0
- data/README.md +2 -3
- data/exe/ssl-info +1 -0
- data/lib/ssl_info/version.rb +3 -1
- data/lib/ssl_info.rb +2 -0
- data/spec/spec_helper.rb +2 -0
- data/spec/ssl_info_spec.rb +2 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c7c3f95cf2513ef01ba22e9b41b89f5cc26e9e07222b333bea08994f58cce7be
|
4
|
+
data.tar.gz: 23e9cf9ee1097afc72498c85ea5cb70b94c579bc93c99f0dbfbd419ba05e8b8b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c23b4b502587ce8d9816419d3f5b7c2a79b76a2851ce35dcede07e55e5eec8eb9d917841c989c8953ca7829d6127fa4f2a6607e0568baa9dd49bf0b7bdaa7d1c
|
7
|
+
data.tar.gz: 61fbbc100dd54d38c0e6f40e94fa70f798427e0f05dcc71dca4807e5f38f7c9a64aab62115dcde1529e6c2fa41c8de0c11ba58bffbf55336c1318ab45c992929
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -9,7 +9,6 @@
|
|
9
9
|
# SSL Info
|
10
10
|
|
11
11
|
This is a simple little gem for retreiving SSL certificate information.
|
12
|
-
TODO: Delete this and the text above, and describe your gem
|
13
12
|
|
14
13
|
## Installation
|
15
14
|
|
@@ -30,10 +29,10 @@ Or install it yourself as:
|
|
30
29
|
## Usage
|
31
30
|
|
32
31
|
```ruby
|
33
|
-
SSLInfo.get_cert("www.
|
32
|
+
SSLInfo.get_cert("www.antiphoton.com")
|
34
33
|
SSLInfo.display_cert
|
35
34
|
|
36
|
-
printf("Raw Cert:
|
35
|
+
printf("Raw Cert: #{SSLInfo.cert}\n")
|
37
36
|
printf("Subject: #{SSLInfo.subject}\n")
|
38
37
|
printf("Issuer: #{SSLInfo.issuer}\n")
|
39
38
|
printf("Serial: #{SSLInfo.serial}\n")
|
data/exe/ssl-info
CHANGED
data/lib/ssl_info/version.rb
CHANGED
data/lib/ssl_info.rb
CHANGED
data/spec/spec_helper.rb
CHANGED
data/spec/ssl_info_spec.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ssl_info
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tim Gurney aka Wolf
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-06-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|