├── .gitignore ├── COPYING ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── bin └── dns-check ├── db └── .gitignore ├── dns-check.gemspec └── lib ├── dns-check.rb └── dns-check ├── cli.rb ├── core.rb ├── db.rb ├── dns.rb ├── errors.rb ├── ext.rb ├── node.rb ├── output.rb ├── update.rb ├── util.rb └── version.rb /.gitignore: -------------------------------------------------------------------------------- 1 | .rbenv-gemsets 2 | db/* 3 | *.gem 4 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alouche/dns-check/HEAD/COPYING -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alouche/dns-check/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alouche/dns-check/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alouche/dns-check/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alouche/dns-check/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/dns-check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alouche/dns-check/HEAD/bin/dns-check -------------------------------------------------------------------------------- /db/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /dns-check.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alouche/dns-check/HEAD/dns-check.gemspec -------------------------------------------------------------------------------- /lib/dns-check.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alouche/dns-check/HEAD/lib/dns-check.rb -------------------------------------------------------------------------------- /lib/dns-check/cli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alouche/dns-check/HEAD/lib/dns-check/cli.rb -------------------------------------------------------------------------------- /lib/dns-check/core.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alouche/dns-check/HEAD/lib/dns-check/core.rb -------------------------------------------------------------------------------- /lib/dns-check/db.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alouche/dns-check/HEAD/lib/dns-check/db.rb -------------------------------------------------------------------------------- /lib/dns-check/dns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alouche/dns-check/HEAD/lib/dns-check/dns.rb -------------------------------------------------------------------------------- /lib/dns-check/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alouche/dns-check/HEAD/lib/dns-check/errors.rb -------------------------------------------------------------------------------- /lib/dns-check/ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alouche/dns-check/HEAD/lib/dns-check/ext.rb -------------------------------------------------------------------------------- /lib/dns-check/node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alouche/dns-check/HEAD/lib/dns-check/node.rb -------------------------------------------------------------------------------- /lib/dns-check/output.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alouche/dns-check/HEAD/lib/dns-check/output.rb -------------------------------------------------------------------------------- /lib/dns-check/update.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alouche/dns-check/HEAD/lib/dns-check/update.rb -------------------------------------------------------------------------------- /lib/dns-check/util.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alouche/dns-check/HEAD/lib/dns-check/util.rb -------------------------------------------------------------------------------- /lib/dns-check/version.rb: -------------------------------------------------------------------------------- 1 | #-*- encoding: utf-8 -*- 2 | 3 | module DNSCheck 4 | VERSION = '0.1.1' 5 | end 6 | --------------------------------------------------------------------------------