dnsruby 1.36 → 1.37

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.
Files changed (46) hide show
  1. data/demo/axfr.rb +16 -0
  2. data/demo/check_soa.rb +17 -0
  3. data/demo/check_zone.rb +16 -0
  4. data/demo/digdlv.rb +16 -0
  5. data/demo/digitar.rb +16 -0
  6. data/demo/digroot.rb +92 -0
  7. data/demo/example_recurse.rb +16 -0
  8. data/demo/mresolv.rb +17 -0
  9. data/demo/mx.rb +16 -0
  10. data/demo/rubydig.rb +16 -0
  11. data/demo/trace_dns.rb +16 -0
  12. data/html/created.rid +1 -1
  13. data/html/fr_class_index.html +0 -6
  14. data/html/fr_method_index.html +332 -348
  15. data/lib/Dnsruby/Cache.rb +18 -1
  16. data/lib/Dnsruby/iana_ports.rb +17 -1
  17. data/lib/Dnsruby/key_cache.rb +16 -0
  18. data/lib/Dnsruby/resource/delete_me.rhtml +6 -0
  19. data/lib/Dnsruby/select_thread.rb.michael.rb +602 -0
  20. data/lib/Dnsruby/single_verifier.rb +17 -0
  21. data/lib/Dnsruby/validator_thread.rb +16 -0
  22. data/lib/Dnsruby/zone_transfer.rb +16 -0
  23. data/test/resolv.conf +16 -1
  24. data/test/tc_auth.rb +49 -0
  25. data/test/tc_cache.rb +16 -0
  26. data/test/tc_dlv.rb +16 -0
  27. data/test/tc_dnskey.rb +16 -0
  28. data/test/tc_ds.rb +16 -0
  29. data/test/tc_itar.rb +16 -0
  30. data/test/tc_nsec.rb +16 -0
  31. data/test/tc_nsec3.rb +16 -0
  32. data/test/tc_nsec3param.rb +16 -0
  33. data/test/tc_queue.rb +16 -0
  34. data/test/tc_recur.rb +16 -0
  35. data/test/tc_rrset.rb +16 -0
  36. data/test/tc_rrsig.rb +16 -0
  37. data/test/tc_soak_base.rb +16 -0
  38. data/test/tc_validator.rb +16 -0
  39. data/test/tc_verifier.rb +16 -0
  40. data/test/ts_queue.rb +3 -0
  41. metadata +7 -7
  42. data/lib/Dnsruby/event_machine_interface.rb +0 -266
  43. data/test/tc_event_machine_deferrable.rb +0 -85
  44. data/test/tc_event_machine_res.rb +0 -174
  45. data/test/tc_event_machine_single_res.rb +0 -101
  46. data/test/tc_event_machine_soak.rb +0 -98
@@ -1,3 +1,19 @@
1
+ #--
2
+ #Copyright 2007 Nominet UK
3
+ #
4
+ #Licensed under the Apache License, Version 2.0 (the "License");
5
+ #you may not use this file except in compliance with the License.
6
+ #You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ #Unless required by applicable law or agreed to in writing, software
11
+ #distributed under the License is distributed on an "AS IS" BASIS,
12
+ #WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ #See the License for the specific language governing permissions and
14
+ #limitations under the License.
15
+ #++
16
+
1
17
  module Dnsruby
2
18
  # Takes care of the validation for the SelectThread. If queries need to be
3
19
  # made in order to validate the response, then a separate thread is fired up
@@ -1,3 +1,19 @@
1
+ #--
2
+ #Copyright 2007 Nominet UK
3
+ #
4
+ #Licensed under the Apache License, Version 2.0 (the "License");
5
+ #you may not use this file except in compliance with the License.
6
+ #You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ #Unless required by applicable law or agreed to in writing, software
11
+ #distributed under the License is distributed on an "AS IS" BASIS,
12
+ #WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ #See the License for the specific language governing permissions and
14
+ #limitations under the License.
15
+ #++
16
+
1
17
  module Dnsruby
2
18
  # This class performs zone transfers as per RFC1034 (AXFR) and RFC1995 (IXFR).
3
19
  class ZoneTransfer
data/test/resolv.conf CHANGED
@@ -1,4 +1,19 @@
1
- # $Id: .resolv.conf 264 2005-04-06 09:16:15Z olaf $
1
+ #--
2
+ #Copyright 2007 Nominet UK
3
+ #
4
+ #Licensed under the Apache License, Version 2.0 (the "License");
5
+ #you may not use this file except in compliance with the License.
6
+ #You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ #Unless required by applicable law or agreed to in writing, software
11
+ #distributed under the License is distributed on an "AS IS" BASIS,
12
+ #WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ #See the License for the specific language governing permissions and
14
+ #limitations under the License.
15
+ #++
16
+
2
17
  domain t.dnsruby.validation-test-servers.nominet.org.uk
3
18
  search dnsruby.validation-test-servers.nominet.org.uk lib.dnsruby.validation-test-servers.nominet.org.uk
4
19
  nameserver 10.0.1.128 10.0.2.128
data/test/tc_auth.rb ADDED
@@ -0,0 +1,49 @@
1
+ #--
2
+ #Copyright 2007 Nominet UK
3
+ #
4
+ #Licensed under the Apache License, Version 2.0 (the "License");
5
+ #you may not use this file except in compliance with the License.
6
+ #You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ #Unless required by applicable law or agreed to in writing, software
11
+ #distributed under the License is distributed on an "AS IS" BASIS,
12
+ #WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ #See the License for the specific language governing permissions and
14
+ #limitations under the License.
15
+ #++
16
+ require 'test/unit'
17
+ require 'dnsruby'
18
+ require 'net/ftp'
19
+ include Dnsruby
20
+
21
+ class TestAuth < Test::Unit::TestCase
22
+ def test_auth
23
+ # @TODO@ Test that we can resolve frobbit.se securely
24
+ Dnsruby::PacketSender.clear_caches
25
+ dlv_key = RR.create("dlv.isc.org. IN DNSKEY 257 3 5 BEAAAAPHMu/5onzrEE7z1egmhg/WPO0+juoZrW3euWEn4MxDCE1+lLy2 brhQv5rN32RKtMzX6Mj70jdzeND4XknW58dnJNPCxn8+jAGl2FZLK8t+ 1uq4W+nnA3qO2+DL+k6BD4mewMLbIYFwe0PG73Te9fZ2kJb56dhgMde5 ymX4BI/oQ+cAK50/xvJv00Frf8kw6ucMTwFlgPe+jnGxPPEmHAte/URk Y62ZfkLoBAADLHQ9IrS2tryAe7mbBZVcOwIeU/Rw/mRx/vwwMCTgNboM QKtUdvNXDrYJDSHZws3xiRXF1Rf+al9UmZfSav/4NWLKjHzpT59k/VSt TDN0YUuWrBNh")
26
+ Dnssec.add_dlv_key(dlv_key)
27
+ #Dnssec.load_itar
28
+ r = Dnsruby::Recursor.new
29
+ # Dnsruby::TheLog.level = Logger::DEBUG
30
+ ret = r.query("frobbit.se", Dnsruby::Types.A)
31
+ print ret
32
+ assert(ret.security_level == Message::SecurityLevel::SECURE)
33
+ print "Done frobbit A record\n"
34
+ ret = r.query("frobbit.se", Dnsruby::Types.MX)
35
+ print ret
36
+ assert(ret.security_level == Message::SecurityLevel::SECURE)
37
+ ret = r.query("ns2.nic.se", Dnsruby::Types.A)
38
+ print ret
39
+ assert(ret.security_level == Message::SecurityLevel::SECURE)
40
+ ret = r.query("nic.se", Dnsruby::Types.NS)
41
+ print ret
42
+ assert(ret.security_level == Message::SecurityLevel::SECURE)
43
+ ret = r.query("ns3.nic.se", Dnsruby::Types.A)
44
+ print ret
45
+ assert(ret.security_level == Message::SecurityLevel::SECURE)
46
+
47
+ end
48
+
49
+ end
data/test/tc_cache.rb CHANGED
@@ -1,3 +1,19 @@
1
+ #--
2
+ #Copyright 2007 Nominet UK
3
+ #
4
+ #Licensed under the Apache License, Version 2.0 (the "License");
5
+ #you may not use this file except in compliance with the License.
6
+ #You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ #Unless required by applicable law or agreed to in writing, software
11
+ #distributed under the License is distributed on an "AS IS" BASIS,
12
+ #WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ #See the License for the specific language governing permissions and
14
+ #limitations under the License.
15
+ #++
16
+
1
17
  require 'test/unit'
2
18
  require 'dnsruby'
3
19
  include Dnsruby
data/test/tc_dlv.rb CHANGED
@@ -1,3 +1,19 @@
1
+ #--
2
+ #Copyright 2007 Nominet UK
3
+ #
4
+ #Licensed under the Apache License, Version 2.0 (the "License");
5
+ #you may not use this file except in compliance with the License.
6
+ #You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ #Unless required by applicable law or agreed to in writing, software
11
+ #distributed under the License is distributed on an "AS IS" BASIS,
12
+ #WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ #See the License for the specific language governing permissions and
14
+ #limitations under the License.
15
+ #++
16
+
1
17
  require 'test/unit'
2
18
  require 'dnsruby'
3
19
  include Dnsruby
data/test/tc_dnskey.rb CHANGED
@@ -1,3 +1,19 @@
1
+ #--
2
+ #Copyright 2007 Nominet UK
3
+ #
4
+ #Licensed under the Apache License, Version 2.0 (the "License");
5
+ #you may not use this file except in compliance with the License.
6
+ #You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ #Unless required by applicable law or agreed to in writing, software
11
+ #distributed under the License is distributed on an "AS IS" BASIS,
12
+ #WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ #See the License for the specific language governing permissions and
14
+ #limitations under the License.
15
+ #++
16
+
1
17
  require 'test/unit'
2
18
  require 'dnsruby'
3
19
 
data/test/tc_ds.rb CHANGED
@@ -1,3 +1,19 @@
1
+ #--
2
+ #Copyright 2007 Nominet UK
3
+ #
4
+ #Licensed under the Apache License, Version 2.0 (the "License");
5
+ #you may not use this file except in compliance with the License.
6
+ #You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ #Unless required by applicable law or agreed to in writing, software
11
+ #distributed under the License is distributed on an "AS IS" BASIS,
12
+ #WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ #See the License for the specific language governing permissions and
14
+ #limitations under the License.
15
+ #++
16
+
1
17
  require 'test/unit'
2
18
  require 'openssl'
3
19
  require 'digest/sha2'
data/test/tc_itar.rb CHANGED
@@ -1,3 +1,19 @@
1
+ #--
2
+ #Copyright 2007 Nominet UK
3
+ #
4
+ #Licensed under the Apache License, Version 2.0 (the "License");
5
+ #you may not use this file except in compliance with the License.
6
+ #You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ #Unless required by applicable law or agreed to in writing, software
11
+ #distributed under the License is distributed on an "AS IS" BASIS,
12
+ #WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ #See the License for the specific language governing permissions and
14
+ #limitations under the License.
15
+ #++
16
+
1
17
  require 'test/unit'
2
18
  require 'dnsruby'
3
19
  include Dnsruby
data/test/tc_nsec.rb CHANGED
@@ -1,3 +1,19 @@
1
+ #--
2
+ #Copyright 2007 Nominet UK
3
+ #
4
+ #Licensed under the Apache License, Version 2.0 (the "License");
5
+ #you may not use this file except in compliance with the License.
6
+ #You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ #Unless required by applicable law or agreed to in writing, software
11
+ #distributed under the License is distributed on an "AS IS" BASIS,
12
+ #WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ #See the License for the specific language governing permissions and
14
+ #limitations under the License.
15
+ #++
16
+
1
17
  require 'test/unit'
2
18
  require 'dnsruby'
3
19
  include Dnsruby
data/test/tc_nsec3.rb CHANGED
@@ -1,3 +1,19 @@
1
+ #--
2
+ #Copyright 2007 Nominet UK
3
+ #
4
+ #Licensed under the Apache License, Version 2.0 (the "License");
5
+ #you may not use this file except in compliance with the License.
6
+ #You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ #Unless required by applicable law or agreed to in writing, software
11
+ #distributed under the License is distributed on an "AS IS" BASIS,
12
+ #WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ #See the License for the specific language governing permissions and
14
+ #limitations under the License.
15
+ #++
16
+
1
17
  require 'test/unit'
2
18
  require 'dnsruby'
3
19
 
@@ -1,3 +1,19 @@
1
+ #--
2
+ #Copyright 2007 Nominet UK
3
+ #
4
+ #Licensed under the Apache License, Version 2.0 (the "License");
5
+ #you may not use this file except in compliance with the License.
6
+ #You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ #Unless required by applicable law or agreed to in writing, software
11
+ #distributed under the License is distributed on an "AS IS" BASIS,
12
+ #WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ #See the License for the specific language governing permissions and
14
+ #limitations under the License.
15
+ #++
16
+
1
17
  require 'test/unit'
2
18
  require 'dnsruby'
3
19
 
data/test/tc_queue.rb CHANGED
@@ -1,3 +1,19 @@
1
+ #--
2
+ #Copyright 2007 Nominet UK
3
+ #
4
+ #Licensed under the Apache License, Version 2.0 (the "License");
5
+ #you may not use this file except in compliance with the License.
6
+ #You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ #Unless required by applicable law or agreed to in writing, software
11
+ #distributed under the License is distributed on an "AS IS" BASIS,
12
+ #WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ #See the License for the specific language governing permissions and
14
+ #limitations under the License.
15
+ #++
16
+
1
17
  require 'test/unit'
2
18
  require 'dnsruby'
3
19
 
data/test/tc_recur.rb CHANGED
@@ -1,3 +1,19 @@
1
+ #--
2
+ #Copyright 2007 Nominet UK
3
+ #
4
+ #Licensed under the Apache License, Version 2.0 (the "License");
5
+ #you may not use this file except in compliance with the License.
6
+ #You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ #Unless required by applicable law or agreed to in writing, software
11
+ #distributed under the License is distributed on an "AS IS" BASIS,
12
+ #WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ #See the License for the specific language governing permissions and
14
+ #limitations under the License.
15
+ #++
16
+
1
17
  require 'dnsruby'
2
18
  require 'test/unit'
3
19
 
data/test/tc_rrset.rb CHANGED
@@ -1,3 +1,19 @@
1
+ #--
2
+ #Copyright 2007 Nominet UK
3
+ #
4
+ #Licensed under the Apache License, Version 2.0 (the "License");
5
+ #you may not use this file except in compliance with the License.
6
+ #You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ #Unless required by applicable law or agreed to in writing, software
11
+ #distributed under the License is distributed on an "AS IS" BASIS,
12
+ #WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ #See the License for the specific language governing permissions and
14
+ #limitations under the License.
15
+ #++
16
+
1
17
  require 'test/unit'
2
18
  require 'dnsruby'
3
19
 
data/test/tc_rrsig.rb CHANGED
@@ -1,3 +1,19 @@
1
+ #--
2
+ #Copyright 2007 Nominet UK
3
+ #
4
+ #Licensed under the Apache License, Version 2.0 (the "License");
5
+ #you may not use this file except in compliance with the License.
6
+ #You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ #Unless required by applicable law or agreed to in writing, software
11
+ #distributed under the License is distributed on an "AS IS" BASIS,
12
+ #WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ #See the License for the specific language governing permissions and
14
+ #limitations under the License.
15
+ #++
16
+
1
17
  require 'test/unit'
2
18
  require 'dnsruby'
3
19
 
data/test/tc_soak_base.rb CHANGED
@@ -1,3 +1,19 @@
1
+ #--
2
+ #Copyright 2007 Nominet UK
3
+ #
4
+ #Licensed under the Apache License, Version 2.0 (the "License");
5
+ #you may not use this file except in compliance with the License.
6
+ #You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ #Unless required by applicable law or agreed to in writing, software
11
+ #distributed under the License is distributed on an "AS IS" BASIS,
12
+ #WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ #See the License for the specific language governing permissions and
14
+ #limitations under the License.
15
+ #++
16
+
1
17
  require 'rubygems'
2
18
  require 'test/unit'
3
19
  require 'dnsruby'
data/test/tc_validator.rb CHANGED
@@ -1,3 +1,19 @@
1
+ #--
2
+ #Copyright 2007 Nominet UK
3
+ #
4
+ #Licensed under the Apache License, Version 2.0 (the "License");
5
+ #you may not use this file except in compliance with the License.
6
+ #You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ #Unless required by applicable law or agreed to in writing, software
11
+ #distributed under the License is distributed on an "AS IS" BASIS,
12
+ #WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ #See the License for the specific language governing permissions and
14
+ #limitations under the License.
15
+ #++
16
+
1
17
  require 'test/unit'
2
18
  require 'dnsruby'
3
19
  include Dnsruby
data/test/tc_verifier.rb CHANGED
@@ -1,3 +1,19 @@
1
+ #--
2
+ #Copyright 2007 Nominet UK
3
+ #
4
+ #Licensed under the Apache License, Version 2.0 (the "License");
5
+ #you may not use this file except in compliance with the License.
6
+ #You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ #Unless required by applicable law or agreed to in writing, software
11
+ #distributed under the License is distributed on an "AS IS" BASIS,
12
+ #WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ #See the License for the specific language governing permissions and
14
+ #limitations under the License.
15
+ #++
16
+
1
17
  require 'test/unit'
2
18
  require 'dnsruby'
3
19
 
data/test/ts_queue.rb ADDED
@@ -0,0 +1,3 @@
1
+
2
+ require "test/tc_queue.rb"
3
+
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dnsruby
3
3
  version: !ruby/object:Gem::Version
4
- version: "1.36"
4
+ version: "1.37"
5
5
  platform: ruby
6
6
  authors:
7
7
  - AlexD
@@ -9,7 +9,7 @@ autorequire: dnsruby
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-09-03 00:00:00 +01:00
12
+ date: 2009-09-10 00:00:00 +01:00
13
13
  default_executable:
14
14
  dependencies: []
15
15
 
@@ -27,6 +27,7 @@ extra_rdoc_files:
27
27
  files:
28
28
  - test/custom.txt
29
29
  - test/resolv.conf
30
+ - test/tc_auth.rb
30
31
  - test/tc_axfr.rb
31
32
  - test/tc_cache.rb
32
33
  - test/tc_dlv.rb
@@ -35,10 +36,6 @@ files:
35
36
  - test/tc_dnsruby.rb
36
37
  - test/tc_ds.rb
37
38
  - test/tc_escapedchars.rb
38
- - test/tc_event_machine_deferrable.rb
39
- - test/tc_event_machine_res.rb
40
- - test/tc_event_machine_single_res.rb
41
- - test/tc_event_machine_soak.rb
42
39
  - test/tc_header.rb
43
40
  - test/tc_itar.rb
44
41
  - test/tc_misc.rb
@@ -74,13 +71,13 @@ files:
74
71
  - test/ts_dnsruby.rb
75
72
  - test/ts_offline.rb
76
73
  - test/ts_online.rb
74
+ - test/ts_queue.rb
77
75
  - lib/Dnsruby
78
76
  - lib/Dnsruby/Cache.rb
79
77
  - lib/Dnsruby/code_mapper.rb
80
78
  - lib/Dnsruby/Config.rb
81
79
  - lib/Dnsruby/DNS.rb
82
80
  - lib/Dnsruby/dnssec.rb
83
- - lib/Dnsruby/event_machine_interface.rb
84
81
  - lib/Dnsruby/Hosts.rb
85
82
  - lib/Dnsruby/iana_ports.rb
86
83
  - lib/Dnsruby/ipv4.rb
@@ -96,6 +93,7 @@ files:
96
93
  - lib/Dnsruby/resource/AAAA.rb
97
94
  - lib/Dnsruby/resource/AFSDB.rb
98
95
  - lib/Dnsruby/resource/CERT.rb
96
+ - lib/Dnsruby/resource/delete_me.rhtml
99
97
  - lib/Dnsruby/resource/DLV.rb
100
98
  - lib/Dnsruby/resource/DNSKEY.rb
101
99
  - lib/Dnsruby/resource/domain_name.rb
@@ -126,6 +124,7 @@ files:
126
124
  - lib/Dnsruby/resource/TXT.rb
127
125
  - lib/Dnsruby/resource/X25.rb
128
126
  - lib/Dnsruby/select_thread.rb
127
+ - lib/Dnsruby/select_thread.rb.michael.rb
129
128
  - lib/Dnsruby/single_verifier.rb
130
129
  - lib/Dnsruby/SingleResolver.rb
131
130
  - lib/Dnsruby/TheLog.rb
@@ -145,6 +144,7 @@ files:
145
144
  - demo/check_zone.rb
146
145
  - demo/digdlv.rb
147
146
  - demo/digitar.rb
147
+ - demo/digroot.rb
148
148
  - demo/example_recurse.rb
149
149
  - demo/mresolv.rb
150
150
  - demo/mx.rb