├── .gitignore ├── .rvmrc ├── .travis.yml ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── lib ├── rspec-dns.rb └── rspec-dns │ └── have_dns.rb ├── rspec-dns.gemspec └── spec ├── rspec-dns ├── 0.2.0.192.rev.zone ├── example.zone └── have_dns_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/rspec-dns/HEAD/.gitignore -------------------------------------------------------------------------------- /.rvmrc: -------------------------------------------------------------------------------- 1 | rvm use 1.9.3@rspec-dns --create 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/rspec-dns/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/rspec-dns/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/rspec-dns/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/rspec-dns/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/rspec-dns/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/rspec-dns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/rspec-dns/HEAD/lib/rspec-dns.rb -------------------------------------------------------------------------------- /lib/rspec-dns/have_dns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/rspec-dns/HEAD/lib/rspec-dns/have_dns.rb -------------------------------------------------------------------------------- /rspec-dns.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/rspec-dns/HEAD/rspec-dns.gemspec -------------------------------------------------------------------------------- /spec/rspec-dns/0.2.0.192.rev.zone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/rspec-dns/HEAD/spec/rspec-dns/0.2.0.192.rev.zone -------------------------------------------------------------------------------- /spec/rspec-dns/example.zone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/rspec-dns/HEAD/spec/rspec-dns/example.zone -------------------------------------------------------------------------------- /spec/rspec-dns/have_dns_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/rspec-dns/HEAD/spec/rspec-dns/have_dns_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/rspec-dns/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------