ssl_expiry 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f0effc36591545891e4c874aae35dbf4a08e26eeaf655aba0b95893de8c69a56
4
- data.tar.gz: ff88019ad378f945eff28099ab6e922ae5f50f97d431ae5ef36ccb5e39b9d59f
3
+ metadata.gz: 4aa5c8c0f033a89418182a704e0821aef2b1982fdcad6cc3867afc3c13352faf
4
+ data.tar.gz: cdc1d3b73090916cac7a3a24fb84d1640ccc55631f63947af13ac7d1748b83ff
5
5
  SHA512:
6
- metadata.gz: 99f3b4fbed20449881f046e72e79c5566d4b47dcd40e1051b5791c977fb045a251a6191b935b974f1e27e83540591803d104b481fa856abd8c144eedef03cb27
7
- data.tar.gz: c65eca42f0d06bef476954ef69421c1679fdf4e8266f51ba87ee3d86610a72f79e7fdfa4a34d3bbc127a5d4da5b09761c9e3f01ea073b976ef08bf89f20b7ba8
6
+ metadata.gz: 73bcd7709c9735b56561dc27f6f7d06d9bd7bafc086961379851dc34006dfc735a2d66952cb9113d540475b86546ddd6447765cd43adb0fe9a31d06260cc950e
7
+ data.tar.gz: db58096a3f788048b6ef69495f87faaf6058ca186a7293b9c5f1124125a345d2c967936a9276595d7ec48d2d7e47534aee270c963a404aa16c667be9bb4ab586
data/.travis.yml CHANGED
@@ -1,23 +1,27 @@
1
- sudo: required
2
1
  matrix:
3
2
  include:
4
3
  - language: ruby
4
+ name: "Bundler (rvm 2.4.4 & bundler 1.17.3)"
5
5
  rvm: 2.4.4
6
6
  before_install:
7
7
  - gem install bundler -v 1.17.3
8
8
  - language: ruby
9
+ name: "Bundler (rvm 2.4.4 & bundler 2.0.1)"
9
10
  rvm: 2.4.4
10
11
  before_install:
11
12
  - gem install bundler -v 2.0.1
12
13
  - language: ruby
14
+ name: "Bundler (rvm 2.5.3 & bundler 2.0.1)"
13
15
  rvm: 2.5.3
14
16
  before_install:
15
17
  - gem install bundler -v 2.0.1
16
18
  - language: ruby
19
+ name: "Bundler (rvm 2.6.1 & bundler 2.0.1)"
17
20
  rvm: 2.6.1
18
21
  before_install:
19
22
  - gem install bundler -v 2.0.1
20
23
  - language: ruby
24
+ name: "Rubocop (rvm 2.4.4)"
21
25
  env: SKIP_INTERPRETER=true
22
26
  rvm: 2.4.4
23
27
  before_install:
@@ -27,6 +31,7 @@ matrix:
27
31
  script:
28
32
  - ./rubocop-travis/scan.sh
29
33
  - language: ruby
34
+ name: "Rubocop (rvm 2.5.3)"
30
35
  env: SKIP_INTERPRETER=true
31
36
  rvm: 2.5.3
32
37
  before_install:
@@ -36,6 +41,7 @@ matrix:
36
41
  script:
37
42
  - ./rubocop-travis/scan.sh
38
43
  - language: ruby
44
+ name: "Rubocop (rvm 2.6.1)"
39
45
  env: SKIP_INTERPRETER=true
40
46
  rvm: 2.6.1
41
47
  before_install:
@@ -45,6 +51,7 @@ matrix:
45
51
  script:
46
52
  - ./rubocop-travis/scan.sh
47
53
  - language: ruby
54
+ name: "Link Checker (rvm 2.6.1)"
48
55
  rvm: 2.6.1
49
56
  before_install:
50
57
  - mkdir travis
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## 1.0.1 (May 8, 2019)
2
+
3
+ CHANGES:
4
+
5
+ * Minor clean up of code, especially the CLI tool ([@TGWolf][])
6
+
1
7
  ## 1.0.0 (February 21, 2019)
2
8
 
3
9
  * Initial Release ([@TGWolf][])
data/CODEOWNERS ADDED
@@ -0,0 +1,7 @@
1
+ # The codeowners file:
2
+ #
3
+ # For more information please read: https://help.github.com/articles/about-codeowners/
4
+
5
+ # These owners will be the default owners for everything in
6
+ # the repo. Unless a later match takes precedence,
7
+ * @AntiPhotonltd/reviewers
data/LICENSE.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2019 Tim Gurney
3
+ Copyright (c) 2019 Tim Gurney aka Wolf
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/exe/check-ssl CHANGED
@@ -31,7 +31,7 @@ def process_arguments
31
31
 
32
32
  begin
33
33
  optparse.parse!
34
- options[:message] = ARGF.read if !STDIN.tty? # override message parameter if data is piped in
34
+ options[:message] = ARGF.read unless STDIN.tty? # override message parameter if data is piped in
35
35
  missing = mandatory.select { |param| options[param].nil? }
36
36
  raise OptionParser::MissingArgument.new(missing.join(', ')) unless missing.empty?
37
37
  rescue OptionParser::InvalidOption, OptionParser::MissingArgument => e
@@ -40,9 +40,8 @@ def process_arguments
40
40
  exit
41
41
  end
42
42
 
43
- results = SSLExpiry::SSLExpiry.check_certificates(options[:domain])
44
- SSLExpiry::SSLExpiry.display_results(results)
45
-
43
+ results = SSLExpiry::SSLExpiry.check_certificates(options[:domain])
44
+ SSLExpiry::SSLExpiry.display_results(results)
46
45
  end
47
46
 
48
47
  # -------------------------------------------------------------------------------- #
@@ -1,3 +1,3 @@
1
1
  module SSLExpiry
2
- VERSION = '1.0.0'.freeze
2
+ VERSION = '1.0.1'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ssl_expiry
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.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-02-21 00:00:00.000000000 Z
11
+ date: 2019-05-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -127,6 +127,7 @@ files:
127
127
  - ".rubocop.yml"
128
128
  - ".travis.yml"
129
129
  - CHANGELOG.md
130
+ - CODEOWNERS
130
131
  - CODE_OF_CONDUCT.md
131
132
  - Gemfile
132
133
  - LICENSE.txt