dns-zone 0.1.3 → 0.2.0

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.
data/Guardfile DELETED
@@ -1,14 +0,0 @@
1
- # Run minitest suite
2
- guard :minitest do
3
- watch(%r{^dns-zone\.gemspec}) { 'all' }
4
- watch(%r{^lib/dns/(.*)\.rb}) { |m| "test/#{m[1]}_test.rb" }
5
- watch(%r{^lib/dns/zone/test_case\.rb}) { 'all' }
6
- watch(%r{^lib/dns/zone/(.*/)?([^/]+)\.rb}) { |m| "test/#{m[1]}#{m[2]}_test.rb" }
7
- watch(%r{^test/(.*/)*(.*)_test\.rb})
8
- end
9
-
10
- # Run `bundle update|install` when gem files altered.
11
- guard :bundler do
12
- watch('Gemfile')
13
- watch(/^.+\.gemspec/)
14
- end