├── .gitignore ├── CHANGELOG ├── LICENSE ├── README.md ├── lib ├── zonefile.rb └── zonefile │ └── zonefile.rb ├── tests ├── test-zone.db └── zonefile.rb └── zonefile.gemspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boesemar/zonefile/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boesemar/zonefile/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boesemar/zonefile/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boesemar/zonefile/HEAD/README.md -------------------------------------------------------------------------------- /lib/zonefile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boesemar/zonefile/HEAD/lib/zonefile.rb -------------------------------------------------------------------------------- /lib/zonefile/zonefile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boesemar/zonefile/HEAD/lib/zonefile/zonefile.rb -------------------------------------------------------------------------------- /tests/test-zone.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boesemar/zonefile/HEAD/tests/test-zone.db -------------------------------------------------------------------------------- /tests/zonefile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boesemar/zonefile/HEAD/tests/zonefile.rb -------------------------------------------------------------------------------- /zonefile.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boesemar/zonefile/HEAD/zonefile.gemspec --------------------------------------------------------------------------------