audit53 0.8.0 → 0.8.9
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 +5 -5
- checksums.yaml.gz.sig +2 -0
- data.tar.gz.sig +5 -0
- data/.gitignore +2 -50
- data/Gemfile +2 -19
- data/LICENSE.txt +19 -17
- data/audit53.gemspec +24 -0
- data/trust/certificates/colstrom.pem +25 -0
- metadata +46 -122
- metadata.gz.sig +0 -0
- data/Gemfile.lock +0 -116
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 7d53df2773dca92fdbf2adc1f9b57be2d67320938d4f460b9180814ef0afb1bd
|
|
4
|
+
data.tar.gz: 115b5e98aef967cec82eb6c3130c085d972bf7a5738559e1466047eebdf40ab8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 451c35e41277b2a58e9faad78663367c9ab60f3f9364c76c51467c7104f115b7b3bd1cf1e563996a373e0e85128e2b05b5a4cd6874a64e044320fefdb532a9b7
|
|
7
|
+
data.tar.gz: 29e8f822b81dbacf21fad813f1ca5190425db823ef7b852fda7efd4d71cd84c7a185ddb9a4c126a6ff89114d25cbe89fafa049fe272915eb8527d63cdd368f72
|
checksums.yaml.gz.sig
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
Z�V���]��qqVb�R�����6��E"j{ct@ߏ�j�����Axd�<�Ֆ¿�1)j��o%�v��g���x�O-�q�e�#��|>#�YHZ��b�$���0��A4Kz����'��Ac'ҖF�C��-_�W'��ɏ����U
|
|
2
|
+
a܈���bL�:eyu�GN-S�0�#���G^<E�W�7��T0F���[�"�4VHj*�<l���K n�B�U�=9m!Y��6(���y�8_���X��?�Z�Ϗ����8'����~Hۺ�T�c�>O�t�m�ѽ���7�+.���U���j�;�K8_���6�b�s���c��F- >m��_�+^����ia�0���@��4��B�q��A'X34�
|
data.tar.gz.sig
ADDED
data/.gitignore
CHANGED
|
@@ -1,50 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
coverage.data
|
|
4
|
-
|
|
5
|
-
# rdoc generated
|
|
6
|
-
rdoc
|
|
7
|
-
|
|
8
|
-
# yard generated
|
|
9
|
-
doc
|
|
10
|
-
.yardoc
|
|
11
|
-
|
|
12
|
-
# bundler
|
|
13
|
-
.bundle
|
|
14
|
-
vendor
|
|
15
|
-
|
|
16
|
-
# jeweler generated
|
|
17
|
-
pkg
|
|
18
|
-
|
|
19
|
-
# Have editor/IDE/OS specific files you need to ignore? Consider using a global gitignore:
|
|
20
|
-
#
|
|
21
|
-
# * Create a file at ~/.gitignore
|
|
22
|
-
# * Include files you want ignored
|
|
23
|
-
# * Run: git config --global core.excludesfile ~/.gitignore
|
|
24
|
-
#
|
|
25
|
-
# After doing this, these files will be ignored in all your git projects,
|
|
26
|
-
# saving you from having to 'pollute' every project you touch with them
|
|
27
|
-
#
|
|
28
|
-
# Not sure what to needs to be ignored for particular editors/OSes? Here's some ideas to get you started. (Remember, remove the leading # of the line)
|
|
29
|
-
#
|
|
30
|
-
# For MacOS:
|
|
31
|
-
#
|
|
32
|
-
#.DS_Store
|
|
33
|
-
|
|
34
|
-
# For TextMate
|
|
35
|
-
#*.tmproj
|
|
36
|
-
#tmtags
|
|
37
|
-
|
|
38
|
-
# For emacs:
|
|
39
|
-
#*~
|
|
40
|
-
#\#*
|
|
41
|
-
#.\#*
|
|
42
|
-
|
|
43
|
-
# For vim:
|
|
44
|
-
#*.swp
|
|
45
|
-
|
|
46
|
-
# For redcar:
|
|
47
|
-
#.redcar
|
|
48
|
-
|
|
49
|
-
# For rubinius:
|
|
50
|
-
#*.rbc
|
|
1
|
+
*.gem
|
|
2
|
+
Gemfile.lock
|
data/Gemfile
CHANGED
|
@@ -1,20 +1,3 @@
|
|
|
1
|
-
source
|
|
2
|
-
# Add dependencies required to use your gem here.
|
|
3
|
-
# Example:
|
|
4
|
-
# gem "activesupport", ">= 2.3.5"
|
|
1
|
+
source 'https://rubygems.org'
|
|
5
2
|
|
|
6
|
-
|
|
7
|
-
gem 'terminal-announce', '~> 1.0.0'
|
|
8
|
-
|
|
9
|
-
# Add dependencies to develop your gem here.
|
|
10
|
-
# Include everything needed to run rake, tests, features, etc.
|
|
11
|
-
group :development do
|
|
12
|
-
gem "rspec", "~> 3.3.0"
|
|
13
|
-
gem "yard", "~> 0.7"
|
|
14
|
-
gem "rdoc", "~> 3.12"
|
|
15
|
-
gem "bundler", "~> 1.0"
|
|
16
|
-
gem "jeweler", "~> 2.0.1"
|
|
17
|
-
gem "simplecov", ">= 0"
|
|
18
|
-
gem "reek", "~> 1.2.8"
|
|
19
|
-
gem "roodi", "~> 2.1.0"
|
|
20
|
-
end
|
|
3
|
+
gemspec
|
data/LICENSE.txt
CHANGED
|
@@ -1,20 +1,22 @@
|
|
|
1
|
-
Copyright (c) 2015 Chris Olstrom
|
|
2
1
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
|
7
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
|
8
|
-
permit persons to whom the Software is furnished to do so, subject to
|
|
9
|
-
the following conditions:
|
|
2
|
+
The MIT License (MIT)
|
|
3
|
+
Copyright © 2015-2018 Chris Olstrom <chris@olstrom.com>
|
|
4
|
+
Copyright © 2018 SUSE LLC
|
|
10
5
|
|
|
11
|
-
|
|
12
|
-
|
|
6
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
|
+
of this software and associated documentation files (the “Software”), to deal
|
|
8
|
+
in the Software without restriction, including without limitation the rights
|
|
9
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
10
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
11
|
+
furnished to do so, subject to the following conditions:
|
|
13
12
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
13
|
+
The above copyright notice and this permission notice shall be included in
|
|
14
|
+
all copies or substantial portions of the Software.
|
|
15
|
+
|
|
16
|
+
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
17
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
18
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
19
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
20
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
21
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
22
|
+
THE SOFTWARE.
|
data/audit53.gemspec
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
Gem::Specification.new do |gem|
|
|
2
|
+
tag = `git describe --tags --abbrev=0`.chomp
|
|
3
|
+
|
|
4
|
+
gem.name = 'audit53'
|
|
5
|
+
gem.homepage = 'https://github.com/colstrom/audit53'
|
|
6
|
+
gem.summary = 'a commandline tool to find stale DNS records in Route53'
|
|
7
|
+
|
|
8
|
+
gem.version = "#{tag}"
|
|
9
|
+
gem.licenses = ['MIT']
|
|
10
|
+
gem.authors = ['Chris Olstrom']
|
|
11
|
+
gem.email = 'chris@olstrom.com'
|
|
12
|
+
|
|
13
|
+
gem.cert_chain = ['trust/certificates/colstrom.pem']
|
|
14
|
+
gem.signing_key = File.expand_path ENV.fetch 'GEM_SIGNING_KEY'
|
|
15
|
+
|
|
16
|
+
gem.files = `git ls-files -z`.split("\x0")
|
|
17
|
+
gem.test_files = `git ls-files -z -- {test,spec,features}/*`.split("\x0")
|
|
18
|
+
gem.executables = `git ls-files -z -- bin/*`.split("\x0").map { |f| File.basename(f) }
|
|
19
|
+
|
|
20
|
+
gem.require_paths = ['lib']
|
|
21
|
+
|
|
22
|
+
gem.add_runtime_dependency 'aws-sdk', '~> 2.1', '>= 2.1.0'
|
|
23
|
+
gem.add_runtime_dependency 'terminal-announce', '~> 1.0', '>= 1.0.0'
|
|
24
|
+
end
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
-----BEGIN CERTIFICATE-----
|
|
2
|
+
MIIENDCCApygAwIBAgIBATANBgkqhkiG9w0BAQsFADAiMSAwHgYDVQQDDBdjaHJp
|
|
3
|
+
cy9EQz1vbHN0cm9tL0RDPWNvbTAeFw0xODAzMTUxODMxMTdaFw0xOTAzMTUxODMx
|
|
4
|
+
MTdaMCIxIDAeBgNVBAMMF2NocmlzL0RDPW9sc3Ryb20vREM9Y29tMIIBojANBgkq
|
|
5
|
+
hkiG9w0BAQEFAAOCAY8AMIIBigKCAYEAp31YmQvpMuQSlgX22B++/rxl4p4LYyaq
|
|
6
|
+
cDDbi8DBro9cm2H60lbpCuAUALiED2CagZEK0vel5W8AnZhhns0OEYAlpQtBSJtN
|
|
7
|
+
8P/jlNYruuY26aVhfHfyA5j1n7tVecJz3i/awEPGC3zuTfvUq7Ahn5czOy+hIm4M
|
|
8
|
+
epee881dqnJlXjzTX/TKFYQa9tYj4bhsjfJOV+EDMcao/DE3vmNcBKH8XFVv/wQe
|
|
9
|
+
MGC7VY5zBwow00AkCicNmIr0Psy5hLvqphJ/E3Eiu4UpXhiBfM0z7xiBPoPMBqOx
|
|
10
|
+
r1RzgfKm/JbDO7leFmrEi8hLofyMmbuGvrSTE274vS4EnKaW6OtK7QM5R+jOJZbd
|
|
11
|
+
67KUgSw+LdHNwu8xCuuQOdKPeSfWdNz94KAdczjzHdXUl/SpfmTuN/D+BCZjTxSo
|
|
12
|
+
F1kACSU6uGTBFKZy35XK+yqeny/1l6xRs6j+cON+LSRMKYSt7jdLcKQVk5wH2xLo
|
|
13
|
+
83njwnumFxKhiWu0oaT5dlDCtyYM85j9AgMBAAGjdTBzMAkGA1UdEwQCMAAwCwYD
|
|
14
|
+
VR0PBAQDAgSwMB0GA1UdDgQWBBQEd3/D0MMj9FHhMZk0QJDlrUtKaTAcBgNVHREE
|
|
15
|
+
FTATgRFjaHJpc0BvbHN0cm9tLmNvbTAcBgNVHRIEFTATgRFjaHJpc0BvbHN0cm9t
|
|
16
|
+
LmNvbTANBgkqhkiG9w0BAQsFAAOCAYEALritM5RkGNZ7cs8hlljSEyuwJrbJYOSX
|
|
17
|
+
6p1S0D83GlfGZ/5XABy1p4EGQjxiAYuDrnnIw6GLHpgxFEtUNvyNYVfAa6u6yz4Y
|
|
18
|
+
nEjbEF76zAAxoRfivDApGJ3G9wuZ14cHZswFJppf2N4RG14F8bfLtU1OMYDLw8eK
|
|
19
|
+
QJOpynqHtrSj+FfsyNb6d93K8rlNCEd4UHkdRH1m7VnG6M18HvkbQCRMJtOFg/3j
|
|
20
|
+
c66TgdClDMJJXXiktVinfsmpTwxe2IzjGvwo2CZ/S53WPU/jb4uQMUzY0tMw48rl
|
|
21
|
+
S07/1DQNogstTnLYueqkUS1PYEwtavKVnpAtnaOdf0rJ/Rk4hA36BRgAVyQrp0uu
|
|
22
|
+
mSbo3NCvepJNYsTOUM+Df421VuPq713JV0aJDqltyfPptTM7fmNMcukbRh0aRuMT
|
|
23
|
+
EIKh6yDoB+oCRuiTV0uw/lKE2PtbONhJb7uN1qhZqla/iBpmUjiEu8+skI+ygv9n
|
|
24
|
+
7Krw8FJrV3+VRCiZTPKHeshAfL9yeIZh
|
|
25
|
+
-----END CERTIFICATE-----
|
metadata
CHANGED
|
@@ -1,20 +1,49 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: audit53
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.8.
|
|
4
|
+
version: 0.8.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chris Olstrom
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
|
-
cert_chain:
|
|
11
|
-
|
|
10
|
+
cert_chain:
|
|
11
|
+
- |
|
|
12
|
+
-----BEGIN CERTIFICATE-----
|
|
13
|
+
MIIENDCCApygAwIBAgIBATANBgkqhkiG9w0BAQsFADAiMSAwHgYDVQQDDBdjaHJp
|
|
14
|
+
cy9EQz1vbHN0cm9tL0RDPWNvbTAeFw0xODAzMTUxODMxMTdaFw0xOTAzMTUxODMx
|
|
15
|
+
MTdaMCIxIDAeBgNVBAMMF2NocmlzL0RDPW9sc3Ryb20vREM9Y29tMIIBojANBgkq
|
|
16
|
+
hkiG9w0BAQEFAAOCAY8AMIIBigKCAYEAp31YmQvpMuQSlgX22B++/rxl4p4LYyaq
|
|
17
|
+
cDDbi8DBro9cm2H60lbpCuAUALiED2CagZEK0vel5W8AnZhhns0OEYAlpQtBSJtN
|
|
18
|
+
8P/jlNYruuY26aVhfHfyA5j1n7tVecJz3i/awEPGC3zuTfvUq7Ahn5czOy+hIm4M
|
|
19
|
+
epee881dqnJlXjzTX/TKFYQa9tYj4bhsjfJOV+EDMcao/DE3vmNcBKH8XFVv/wQe
|
|
20
|
+
MGC7VY5zBwow00AkCicNmIr0Psy5hLvqphJ/E3Eiu4UpXhiBfM0z7xiBPoPMBqOx
|
|
21
|
+
r1RzgfKm/JbDO7leFmrEi8hLofyMmbuGvrSTE274vS4EnKaW6OtK7QM5R+jOJZbd
|
|
22
|
+
67KUgSw+LdHNwu8xCuuQOdKPeSfWdNz94KAdczjzHdXUl/SpfmTuN/D+BCZjTxSo
|
|
23
|
+
F1kACSU6uGTBFKZy35XK+yqeny/1l6xRs6j+cON+LSRMKYSt7jdLcKQVk5wH2xLo
|
|
24
|
+
83njwnumFxKhiWu0oaT5dlDCtyYM85j9AgMBAAGjdTBzMAkGA1UdEwQCMAAwCwYD
|
|
25
|
+
VR0PBAQDAgSwMB0GA1UdDgQWBBQEd3/D0MMj9FHhMZk0QJDlrUtKaTAcBgNVHREE
|
|
26
|
+
FTATgRFjaHJpc0BvbHN0cm9tLmNvbTAcBgNVHRIEFTATgRFjaHJpc0BvbHN0cm9t
|
|
27
|
+
LmNvbTANBgkqhkiG9w0BAQsFAAOCAYEALritM5RkGNZ7cs8hlljSEyuwJrbJYOSX
|
|
28
|
+
6p1S0D83GlfGZ/5XABy1p4EGQjxiAYuDrnnIw6GLHpgxFEtUNvyNYVfAa6u6yz4Y
|
|
29
|
+
nEjbEF76zAAxoRfivDApGJ3G9wuZ14cHZswFJppf2N4RG14F8bfLtU1OMYDLw8eK
|
|
30
|
+
QJOpynqHtrSj+FfsyNb6d93K8rlNCEd4UHkdRH1m7VnG6M18HvkbQCRMJtOFg/3j
|
|
31
|
+
c66TgdClDMJJXXiktVinfsmpTwxe2IzjGvwo2CZ/S53WPU/jb4uQMUzY0tMw48rl
|
|
32
|
+
S07/1DQNogstTnLYueqkUS1PYEwtavKVnpAtnaOdf0rJ/Rk4hA36BRgAVyQrp0uu
|
|
33
|
+
mSbo3NCvepJNYsTOUM+Df421VuPq713JV0aJDqltyfPptTM7fmNMcukbRh0aRuMT
|
|
34
|
+
EIKh6yDoB+oCRuiTV0uw/lKE2PtbONhJb7uN1qhZqla/iBpmUjiEu8+skI+ygv9n
|
|
35
|
+
7Krw8FJrV3+VRCiZTPKHeshAfL9yeIZh
|
|
36
|
+
-----END CERTIFICATE-----
|
|
37
|
+
date: 2018-03-15 00:00:00.000000000 Z
|
|
12
38
|
dependencies:
|
|
13
39
|
- !ruby/object:Gem::Dependency
|
|
14
40
|
name: aws-sdk
|
|
15
41
|
requirement: !ruby/object:Gem::Requirement
|
|
16
42
|
requirements:
|
|
17
43
|
- - "~>"
|
|
44
|
+
- !ruby/object:Gem::Version
|
|
45
|
+
version: '2.1'
|
|
46
|
+
- - ">="
|
|
18
47
|
- !ruby/object:Gem::Version
|
|
19
48
|
version: 2.1.0
|
|
20
49
|
type: :runtime
|
|
@@ -22,6 +51,9 @@ dependencies:
|
|
|
22
51
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
52
|
requirements:
|
|
24
53
|
- - "~>"
|
|
54
|
+
- !ruby/object:Gem::Version
|
|
55
|
+
version: '2.1'
|
|
56
|
+
- - ">="
|
|
25
57
|
- !ruby/object:Gem::Version
|
|
26
58
|
version: 2.1.0
|
|
27
59
|
- !ruby/object:Gem::Dependency
|
|
@@ -30,152 +62,44 @@ dependencies:
|
|
|
30
62
|
requirements:
|
|
31
63
|
- - "~>"
|
|
32
64
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: 1.0
|
|
34
|
-
|
|
35
|
-
prerelease: false
|
|
36
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
-
requirements:
|
|
38
|
-
- - "~>"
|
|
65
|
+
version: '1.0'
|
|
66
|
+
- - ">="
|
|
39
67
|
- !ruby/object:Gem::Version
|
|
40
68
|
version: 1.0.0
|
|
41
|
-
|
|
42
|
-
name: rspec
|
|
43
|
-
requirement: !ruby/object:Gem::Requirement
|
|
44
|
-
requirements:
|
|
45
|
-
- - "~>"
|
|
46
|
-
- !ruby/object:Gem::Version
|
|
47
|
-
version: 3.3.0
|
|
48
|
-
type: :development
|
|
49
|
-
prerelease: false
|
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
-
requirements:
|
|
52
|
-
- - "~>"
|
|
53
|
-
- !ruby/object:Gem::Version
|
|
54
|
-
version: 3.3.0
|
|
55
|
-
- !ruby/object:Gem::Dependency
|
|
56
|
-
name: yard
|
|
57
|
-
requirement: !ruby/object:Gem::Requirement
|
|
58
|
-
requirements:
|
|
59
|
-
- - "~>"
|
|
60
|
-
- !ruby/object:Gem::Version
|
|
61
|
-
version: '0.7'
|
|
62
|
-
type: :development
|
|
63
|
-
prerelease: false
|
|
64
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
-
requirements:
|
|
66
|
-
- - "~>"
|
|
67
|
-
- !ruby/object:Gem::Version
|
|
68
|
-
version: '0.7'
|
|
69
|
-
- !ruby/object:Gem::Dependency
|
|
70
|
-
name: rdoc
|
|
71
|
-
requirement: !ruby/object:Gem::Requirement
|
|
72
|
-
requirements:
|
|
73
|
-
- - "~>"
|
|
74
|
-
- !ruby/object:Gem::Version
|
|
75
|
-
version: '3.12'
|
|
76
|
-
type: :development
|
|
77
|
-
prerelease: false
|
|
78
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
79
|
-
requirements:
|
|
80
|
-
- - "~>"
|
|
81
|
-
- !ruby/object:Gem::Version
|
|
82
|
-
version: '3.12'
|
|
83
|
-
- !ruby/object:Gem::Dependency
|
|
84
|
-
name: bundler
|
|
85
|
-
requirement: !ruby/object:Gem::Requirement
|
|
86
|
-
requirements:
|
|
87
|
-
- - "~>"
|
|
88
|
-
- !ruby/object:Gem::Version
|
|
89
|
-
version: '1.0'
|
|
90
|
-
type: :development
|
|
69
|
+
type: :runtime
|
|
91
70
|
prerelease: false
|
|
92
71
|
version_requirements: !ruby/object:Gem::Requirement
|
|
93
72
|
requirements:
|
|
94
73
|
- - "~>"
|
|
95
74
|
- !ruby/object:Gem::Version
|
|
96
75
|
version: '1.0'
|
|
97
|
-
- !ruby/object:Gem::Dependency
|
|
98
|
-
name: jeweler
|
|
99
|
-
requirement: !ruby/object:Gem::Requirement
|
|
100
|
-
requirements:
|
|
101
|
-
- - "~>"
|
|
102
|
-
- !ruby/object:Gem::Version
|
|
103
|
-
version: 2.0.1
|
|
104
|
-
type: :development
|
|
105
|
-
prerelease: false
|
|
106
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
107
|
-
requirements:
|
|
108
|
-
- - "~>"
|
|
109
|
-
- !ruby/object:Gem::Version
|
|
110
|
-
version: 2.0.1
|
|
111
|
-
- !ruby/object:Gem::Dependency
|
|
112
|
-
name: simplecov
|
|
113
|
-
requirement: !ruby/object:Gem::Requirement
|
|
114
|
-
requirements:
|
|
115
76
|
- - ">="
|
|
116
77
|
- !ruby/object:Gem::Version
|
|
117
|
-
version:
|
|
118
|
-
|
|
119
|
-
prerelease: false
|
|
120
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
121
|
-
requirements:
|
|
122
|
-
- - ">="
|
|
123
|
-
- !ruby/object:Gem::Version
|
|
124
|
-
version: '0'
|
|
125
|
-
- !ruby/object:Gem::Dependency
|
|
126
|
-
name: reek
|
|
127
|
-
requirement: !ruby/object:Gem::Requirement
|
|
128
|
-
requirements:
|
|
129
|
-
- - "~>"
|
|
130
|
-
- !ruby/object:Gem::Version
|
|
131
|
-
version: 1.2.8
|
|
132
|
-
type: :development
|
|
133
|
-
prerelease: false
|
|
134
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
135
|
-
requirements:
|
|
136
|
-
- - "~>"
|
|
137
|
-
- !ruby/object:Gem::Version
|
|
138
|
-
version: 1.2.8
|
|
139
|
-
- !ruby/object:Gem::Dependency
|
|
140
|
-
name: roodi
|
|
141
|
-
requirement: !ruby/object:Gem::Requirement
|
|
142
|
-
requirements:
|
|
143
|
-
- - "~>"
|
|
144
|
-
- !ruby/object:Gem::Version
|
|
145
|
-
version: 2.1.0
|
|
146
|
-
type: :development
|
|
147
|
-
prerelease: false
|
|
148
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
149
|
-
requirements:
|
|
150
|
-
- - "~>"
|
|
151
|
-
- !ruby/object:Gem::Version
|
|
152
|
-
version: 2.1.0
|
|
153
|
-
description: audit53 gathers a list of IPs for all records in a zone, and warns if
|
|
154
|
-
any resolve to an IP not associated with an EC2 instance.
|
|
78
|
+
version: 1.0.0
|
|
79
|
+
description:
|
|
155
80
|
email: chris@olstrom.com
|
|
156
81
|
executables:
|
|
157
82
|
- audit53
|
|
158
83
|
extensions: []
|
|
159
|
-
extra_rdoc_files:
|
|
160
|
-
- LICENSE.txt
|
|
161
|
-
- README.mdown
|
|
84
|
+
extra_rdoc_files: []
|
|
162
85
|
files:
|
|
163
86
|
- ".document"
|
|
164
87
|
- ".gitignore"
|
|
165
88
|
- ".rspec"
|
|
166
89
|
- Gemfile
|
|
167
|
-
- Gemfile.lock
|
|
168
90
|
- LICENSE.txt
|
|
169
91
|
- README.mdown
|
|
170
92
|
- Rakefile
|
|
171
93
|
- VERSION
|
|
94
|
+
- audit53.gemspec
|
|
172
95
|
- bin/audit53
|
|
173
96
|
- lib/audit53.rb
|
|
174
97
|
- lib/audit53/ec2.rb
|
|
175
98
|
- lib/audit53/route53.rb
|
|
176
99
|
- spec/audit53_spec.rb
|
|
177
100
|
- spec/spec_helper.rb
|
|
178
|
-
|
|
101
|
+
- trust/certificates/colstrom.pem
|
|
102
|
+
homepage: https://github.com/colstrom/audit53
|
|
179
103
|
licenses:
|
|
180
104
|
- MIT
|
|
181
105
|
metadata: {}
|
|
@@ -195,10 +119,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
195
119
|
version: '0'
|
|
196
120
|
requirements: []
|
|
197
121
|
rubyforge_project:
|
|
198
|
-
rubygems_version: 2.
|
|
122
|
+
rubygems_version: 2.7.6
|
|
199
123
|
signing_key:
|
|
200
124
|
specification_version: 4
|
|
201
|
-
summary: a commandline tool to find stale DNS records
|
|
125
|
+
summary: a commandline tool to find stale DNS records in Route53
|
|
202
126
|
test_files:
|
|
203
127
|
- spec/audit53_spec.rb
|
|
204
128
|
- spec/spec_helper.rb
|
metadata.gz.sig
ADDED
|
Binary file
|
data/Gemfile.lock
DELETED
|
@@ -1,116 +0,0 @@
|
|
|
1
|
-
GEM
|
|
2
|
-
remote: http://rubygems.org/
|
|
3
|
-
specs:
|
|
4
|
-
addressable (2.3.8)
|
|
5
|
-
aws-sdk (2.1.7)
|
|
6
|
-
aws-sdk-resources (= 2.1.7)
|
|
7
|
-
aws-sdk-core (2.1.7)
|
|
8
|
-
jmespath (~> 1.0)
|
|
9
|
-
aws-sdk-resources (2.1.7)
|
|
10
|
-
aws-sdk-core (= 2.1.7)
|
|
11
|
-
builder (3.2.2)
|
|
12
|
-
contracts (0.10)
|
|
13
|
-
descendants_tracker (0.0.4)
|
|
14
|
-
thread_safe (~> 0.3, >= 0.3.1)
|
|
15
|
-
diff-lcs (1.2.5)
|
|
16
|
-
docile (1.1.5)
|
|
17
|
-
faraday (0.9.1)
|
|
18
|
-
multipart-post (>= 1.2, < 3)
|
|
19
|
-
git (1.2.9.1)
|
|
20
|
-
github_api (0.12.3)
|
|
21
|
-
addressable (~> 2.3)
|
|
22
|
-
descendants_tracker (~> 0.0.4)
|
|
23
|
-
faraday (~> 0.8, < 0.10)
|
|
24
|
-
hashie (>= 3.3)
|
|
25
|
-
multi_json (>= 1.7.5, < 2.0)
|
|
26
|
-
nokogiri (~> 1.6.3)
|
|
27
|
-
oauth2
|
|
28
|
-
hashie (3.4.2)
|
|
29
|
-
highline (1.7.2)
|
|
30
|
-
jeweler (2.0.1)
|
|
31
|
-
builder
|
|
32
|
-
bundler (>= 1.0)
|
|
33
|
-
git (>= 1.2.5)
|
|
34
|
-
github_api
|
|
35
|
-
highline (>= 1.6.15)
|
|
36
|
-
nokogiri (>= 1.5.10)
|
|
37
|
-
rake
|
|
38
|
-
rdoc
|
|
39
|
-
jmespath (1.0.2)
|
|
40
|
-
multi_json (~> 1.0)
|
|
41
|
-
json (1.8.3)
|
|
42
|
-
jwt (1.5.1)
|
|
43
|
-
mini_portile (0.6.2)
|
|
44
|
-
multi_json (1.11.2)
|
|
45
|
-
multi_xml (0.5.5)
|
|
46
|
-
multipart-post (2.0.0)
|
|
47
|
-
nokogiri (1.6.6.2)
|
|
48
|
-
mini_portile (~> 0.6.0)
|
|
49
|
-
oauth2 (1.0.0)
|
|
50
|
-
faraday (>= 0.8, < 0.10)
|
|
51
|
-
jwt (~> 1.0)
|
|
52
|
-
multi_json (~> 1.3)
|
|
53
|
-
multi_xml (~> 0.5)
|
|
54
|
-
rack (~> 1.2)
|
|
55
|
-
rack (1.6.4)
|
|
56
|
-
rainbow (2.0.0)
|
|
57
|
-
rake (10.4.2)
|
|
58
|
-
rdoc (3.12.2)
|
|
59
|
-
json (~> 1.4)
|
|
60
|
-
reek (1.2.13)
|
|
61
|
-
ripper_ruby_parser (~> 0.0.7)
|
|
62
|
-
ruby2ruby (~> 1.2.5)
|
|
63
|
-
ruby_parser (~> 2.0)
|
|
64
|
-
sexp_processor (~> 3.0)
|
|
65
|
-
ripper_ruby_parser (0.0.8)
|
|
66
|
-
sexp_processor (~> 3.0)
|
|
67
|
-
roodi (2.1.0)
|
|
68
|
-
ruby_parser
|
|
69
|
-
rspec (3.3.0)
|
|
70
|
-
rspec-core (~> 3.3.0)
|
|
71
|
-
rspec-expectations (~> 3.3.0)
|
|
72
|
-
rspec-mocks (~> 3.3.0)
|
|
73
|
-
rspec-core (3.3.1)
|
|
74
|
-
rspec-support (~> 3.3.0)
|
|
75
|
-
rspec-expectations (3.3.0)
|
|
76
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
77
|
-
rspec-support (~> 3.3.0)
|
|
78
|
-
rspec-mocks (3.3.1)
|
|
79
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
80
|
-
rspec-support (~> 3.3.0)
|
|
81
|
-
rspec-support (3.3.0)
|
|
82
|
-
ruby2ruby (1.2.5)
|
|
83
|
-
ruby_parser (~> 2.0)
|
|
84
|
-
sexp_processor (~> 3.0)
|
|
85
|
-
ruby_parser (2.3.1)
|
|
86
|
-
sexp_processor (~> 3.0)
|
|
87
|
-
sexp_processor (3.2.0)
|
|
88
|
-
simplecov (0.10.0)
|
|
89
|
-
docile (~> 1.1.0)
|
|
90
|
-
json (~> 1.8)
|
|
91
|
-
simplecov-html (~> 0.10.0)
|
|
92
|
-
simplecov-html (0.10.0)
|
|
93
|
-
terminal-announce (1.0.0)
|
|
94
|
-
bundler
|
|
95
|
-
contracts
|
|
96
|
-
rainbow
|
|
97
|
-
thread_safe (0.3.5)
|
|
98
|
-
yard (0.8.7.6)
|
|
99
|
-
|
|
100
|
-
PLATFORMS
|
|
101
|
-
ruby
|
|
102
|
-
|
|
103
|
-
DEPENDENCIES
|
|
104
|
-
aws-sdk (~> 2.1.0)
|
|
105
|
-
bundler (~> 1.0)
|
|
106
|
-
jeweler (~> 2.0.1)
|
|
107
|
-
rdoc (~> 3.12)
|
|
108
|
-
reek (~> 1.2.8)
|
|
109
|
-
roodi (~> 2.1.0)
|
|
110
|
-
rspec (~> 3.3.0)
|
|
111
|
-
simplecov
|
|
112
|
-
terminal-announce (~> 1.0.0)
|
|
113
|
-
yard (~> 0.7)
|
|
114
|
-
|
|
115
|
-
BUNDLED WITH
|
|
116
|
-
1.10.5
|