audit53 0.8.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 029e0257fbda4d2122a7f7411e4bfe8680b6313d
4
+ data.tar.gz: 7962f15c9c7d53526093bb5131193164fff2b9ef
5
+ SHA512:
6
+ metadata.gz: 0035c2d33e43db76982196b54ccaca2ec5c8fa6089cfe82676226d887454007254d20b135aabb7e756bcadd864df172a9f686f688e547acb6ed2f40678f358ac
7
+ data.tar.gz: a3fd2b01ddfc12a28df4159afa4f71d600f1d1f2f4b57610334cfbbea2ecf33de64df706cbde997b955780b6dcead0eeeec95d093f0e214d60d6794c51f381a8
data/.document ADDED
@@ -0,0 +1,5 @@
1
+ lib/**/*.rb
2
+ bin/*
3
+ -
4
+ features/**/*.feature
5
+ LICENSE.txt
data/.gitignore ADDED
@@ -0,0 +1,50 @@
1
+ # rcov generated
2
+ coverage
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
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --color
data/Gemfile ADDED
@@ -0,0 +1,20 @@
1
+ source "http://rubygems.org"
2
+ # Add dependencies required to use your gem here.
3
+ # Example:
4
+ # gem "activesupport", ">= 2.3.5"
5
+
6
+ gem 'aws-sdk', '~> 2.1.0'
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
data/Gemfile.lock ADDED
@@ -0,0 +1,116 @@
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
data/LICENSE.txt ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2015 Chris Olstrom
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
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:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.mdown ADDED
@@ -0,0 +1,25 @@
1
+ # audit53
2
+
3
+ audit53 is a commandline tool to find stale DNS records.
4
+
5
+ Description
6
+ -----------
7
+
8
+ `audit53` gathers a list of IPs for all records in a zone, and warns if any resolve to an IP not associated with an EC2 instance.
9
+
10
+ Contributing to audit53
11
+ ----------------------
12
+
13
+ * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
14
+ * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
15
+ * Fork the project.
16
+ * Start a feature/bugfix branch.
17
+ * Commit and push until you are happy with your contribution.
18
+ * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
19
+ * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
20
+
21
+ == Copyright
22
+
23
+ Copyright (c) 2015 Chris Olstrom. See LICENSE.txt for
24
+ further details.
25
+
data/Rakefile ADDED
@@ -0,0 +1,60 @@
1
+ # encoding: utf-8
2
+
3
+ require 'rubygems'
4
+ require 'bundler'
5
+ begin
6
+ Bundler.setup(:default, :development)
7
+ rescue Bundler::BundlerError => e
8
+ $stderr.puts e.message
9
+ $stderr.puts "Run `bundle install` to install missing gems"
10
+ exit e.status_code
11
+ end
12
+ require 'rake'
13
+
14
+ require 'jeweler'
15
+ Jeweler::Tasks.new do |gem|
16
+ # gem is a Gem::Specification... see http://guides.rubygems.org/specification-reference/ for more options
17
+ gem.name = "audit53"
18
+ gem.homepage = "http://github.com/colstrom/audit53"
19
+ gem.license = "MIT"
20
+ gem.summary = %Q{a commandline tool to find stale DNS records.}
21
+ gem.description = %Q{audit53 gathers a list of IPs for all records in a zone, and warns if any resolve to an IP not associated with an EC2 instance.}
22
+ gem.email = "chris@olstrom.com"
23
+ gem.authors = ["Chris Olstrom"]
24
+ gem.files = `git ls-files`.split("\n")
25
+ gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
26
+ gem.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
27
+ gem.require_paths = ['lib']
28
+ # dependencies defined in Gemfile
29
+ end
30
+ Jeweler::RubygemsDotOrgTasks.new
31
+
32
+ require 'rspec/core'
33
+ require 'rspec/core/rake_task'
34
+ RSpec::Core::RakeTask.new(:spec) do |spec|
35
+ spec.pattern = FileList['spec/**/*_spec.rb']
36
+ end
37
+
38
+ desc "Code coverage detail"
39
+ task :simplecov do
40
+ ENV['COVERAGE'] = "true"
41
+ Rake::Task['spec'].execute
42
+ end
43
+
44
+ require 'reek/rake/task'
45
+ Reek::Rake::Task.new do |t|
46
+ t.fail_on_error = true
47
+ t.verbose = false
48
+ t.source_files = 'lib/**/*.rb'
49
+ end
50
+
51
+ require 'roodi'
52
+ require 'roodi_task'
53
+ RoodiTask.new do |t|
54
+ t.verbose = false
55
+ end
56
+
57
+ task :default => :spec
58
+
59
+ require 'yard'
60
+ YARD::Rake::YardocTask.new
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.8.0
data/bin/audit53 ADDED
@@ -0,0 +1,21 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'audit53'
4
+ require 'terminal-announce'
5
+
6
+ abort 'Syntax: route53-audit <domain>' if ARGV.empty?
7
+
8
+ zone_id = Audit53::Route53.zone_id domain: ARGV.first
9
+ records = Audit53::Route53.ips zone_id: zone_id
10
+ instances = Audit53::EC2.ips
11
+
12
+ puts "#{records.length} DNS Records <-> #{instances.length} EC2 Instances"
13
+
14
+ longest = records.values.max_by(&:length).length
15
+ records.each do |ip, name|
16
+ if instances[ip]
17
+ Announce.success "#{name.ljust longest} #{ip.ljust 16} #{instances[ip]}"
18
+ else
19
+ Announce.warning "#{name.ljust longest} #{ip.ljust 16}"
20
+ end
21
+ end
@@ -0,0 +1,28 @@
1
+ require 'aws-sdk'
2
+ require 'contracts'
3
+
4
+ module Audit53
5
+ module EC2
6
+ include Contracts
7
+
8
+ Contract ({ region: String }) => Aws::EC2::Client
9
+ def self.client(region:)
10
+ Aws::EC2::Client.new region: region
11
+ end
12
+
13
+ Contract ({ region: String }) => ArrayOf[Aws::EC2::Types::Instance]
14
+ def self.instances(region:)
15
+ client(region: region).describe_instances.each_page
16
+ .flat_map(&:reservations)
17
+ .flat_map(&:instances)
18
+ end
19
+
20
+ Contract None => Hash
21
+ def self.ips
22
+ @ips ||= %w(us-east-1 us-west-1 us-west-2 eu-west-1)
23
+ .flat_map { |r| instances region: r }
24
+ .map { |i| { i.public_ip_address => i.instance_id } }
25
+ .reduce({}, :update)
26
+ end
27
+ end
28
+ end
@@ -0,0 +1,52 @@
1
+ require 'aws-sdk'
2
+ require 'contracts'
3
+
4
+ module Audit53
5
+ module Route53
6
+ include Contracts
7
+
8
+ Contract Maybe[({ region: String })] => Aws::Route53::Client
9
+ def self.client(region: 'us-west-1')
10
+ @client ||= Aws::Route53::Client.new region: region
11
+ end
12
+
13
+ Contract ({ domain: String }) => String
14
+ def self.zone_id(domain:)
15
+ domain += '.' unless domain.end_with? '.'
16
+ @zone_id ||= client.list_hosted_zones
17
+ .hosted_zones
18
+ .select { |z| z.name == domain }
19
+ .map { |z| z.id.split('/').last }
20
+ .reduce
21
+ end
22
+
23
+ Contract ({ zone_id: String }) => ArrayOf[Aws::Route53::Types::ResourceRecordSet]
24
+ def self.records(zone_id:)
25
+ @records ||= client.list_resource_record_sets(hosted_zone_id: zone_id)
26
+ .each_page
27
+ .flat_map(&:resource_record_sets)
28
+ .reject(&:alias_target)
29
+ end
30
+
31
+ Contract ({ zone_id: String, type: String }) => Hash
32
+ def self.records_subset(zone_id:, type:)
33
+ records(zone_id: zone_id)
34
+ .select { |r| r.type == type }
35
+ .map { |r| { r.resource_records.first.value => r.name } }
36
+ .reduce({}, :update)
37
+ end
38
+
39
+ Contract ({ zone_id: String }) => Hash
40
+ def self.cname_ips(zone_id:)
41
+ records_subset(zone_id: zone_id, type: 'CNAME')
42
+ .select { |k, _| k.start_with? 'ec2' }
43
+ .map { |k, v| { k.split('.').first.split('-').last(4).join('.') => v } }
44
+ .reduce({}, :update)
45
+ end
46
+
47
+ Contract ({ zone_id: String }) => Hash
48
+ def self.ips(zone_id:)
49
+ records_subset(zone_id: zone_id, type: 'A"').merge cname_ips(zone_id: zone_id)
50
+ end
51
+ end
52
+ end
data/lib/audit53.rb ADDED
@@ -0,0 +1,2 @@
1
+ require_relative 'audit53/ec2'
2
+ require_relative 'audit53/route53'
@@ -0,0 +1,7 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
2
+
3
+ describe "Audit53" do
4
+ it "fails" do
5
+ fail "hey buddy, you should probably rename this file and start specing for real"
6
+ end
7
+ end
@@ -0,0 +1,29 @@
1
+ require 'simplecov'
2
+
3
+ module SimpleCov::Configuration
4
+ def clean_filters
5
+ @filters = []
6
+ end
7
+ end
8
+
9
+ SimpleCov.configure do
10
+ clean_filters
11
+ load_adapter 'test_frameworks'
12
+ end
13
+
14
+ ENV["COVERAGE"] && SimpleCov.start do
15
+ add_filter "/.rvm/"
16
+ end
17
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
18
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
19
+
20
+ require 'rspec'
21
+ require 'audit53'
22
+
23
+ # Requires supporting files with custom matchers and macros, etc,
24
+ # in ./support/ and its subdirectories.
25
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f}
26
+
27
+ RSpec.configure do |config|
28
+
29
+ end
metadata ADDED
@@ -0,0 +1,204 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: audit53
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.8.0
5
+ platform: ruby
6
+ authors:
7
+ - Chris Olstrom
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-07-15 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: aws-sdk
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 2.1.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 2.1.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: terminal-announce
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 1.0.0
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 1.0.0
41
+ - !ruby/object:Gem::Dependency
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
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ 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
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :development
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.
155
+ email: chris@olstrom.com
156
+ executables:
157
+ - audit53
158
+ extensions: []
159
+ extra_rdoc_files:
160
+ - LICENSE.txt
161
+ - README.mdown
162
+ files:
163
+ - ".document"
164
+ - ".gitignore"
165
+ - ".rspec"
166
+ - Gemfile
167
+ - Gemfile.lock
168
+ - LICENSE.txt
169
+ - README.mdown
170
+ - Rakefile
171
+ - VERSION
172
+ - bin/audit53
173
+ - lib/audit53.rb
174
+ - lib/audit53/ec2.rb
175
+ - lib/audit53/route53.rb
176
+ - spec/audit53_spec.rb
177
+ - spec/spec_helper.rb
178
+ homepage: http://github.com/colstrom/audit53
179
+ licenses:
180
+ - MIT
181
+ metadata: {}
182
+ post_install_message:
183
+ rdoc_options: []
184
+ require_paths:
185
+ - lib
186
+ required_ruby_version: !ruby/object:Gem::Requirement
187
+ requirements:
188
+ - - ">="
189
+ - !ruby/object:Gem::Version
190
+ version: '0'
191
+ required_rubygems_version: !ruby/object:Gem::Requirement
192
+ requirements:
193
+ - - ">="
194
+ - !ruby/object:Gem::Version
195
+ version: '0'
196
+ requirements: []
197
+ rubyforge_project:
198
+ rubygems_version: 2.4.8
199
+ signing_key:
200
+ specification_version: 4
201
+ summary: a commandline tool to find stale DNS records.
202
+ test_files:
203
+ - spec/audit53_spec.rb
204
+ - spec/spec_helper.rb