dns-zone 0.1.3 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
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