redns 0.1.9 → 0.1.10
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/VERSION +1 -1
- data/lib/redns/connection.rb +1 -3
- data/redns.gemspec +46 -49
- metadata +6 -15
- data/.gitignore +0 -16
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.10
|
data/lib/redns/connection.rb
CHANGED
data/redns.gemspec
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
# Generated by jeweler
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
-
# Instead, edit Jeweler::Tasks in Rakefile, and run
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{redns}
|
|
8
|
-
s.version = "0.1.
|
|
8
|
+
s.version = "0.1.10"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["tadman"]
|
|
12
|
-
s.date = %q{
|
|
12
|
+
s.date = %q{2011-02-25}
|
|
13
13
|
s.description = %q{ReDNS is a pure Ruby DNS library with drivers for reactor-model engines such as EventMachine}
|
|
14
14
|
s.email = %q{github@tadman.ca}
|
|
15
15
|
s.extra_rdoc_files = [
|
|
@@ -17,61 +17,58 @@ Gem::Specification.new do |s|
|
|
|
17
17
|
]
|
|
18
18
|
s.files = [
|
|
19
19
|
".document",
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
"test/test_redns_support.rb"
|
|
20
|
+
"README.rdoc",
|
|
21
|
+
"Rakefile",
|
|
22
|
+
"VERSION",
|
|
23
|
+
"lib/redns.rb",
|
|
24
|
+
"lib/redns/address.rb",
|
|
25
|
+
"lib/redns/buffer.rb",
|
|
26
|
+
"lib/redns/connection.rb",
|
|
27
|
+
"lib/redns/fragment.rb",
|
|
28
|
+
"lib/redns/message.rb",
|
|
29
|
+
"lib/redns/name.rb",
|
|
30
|
+
"lib/redns/question.rb",
|
|
31
|
+
"lib/redns/record.rb",
|
|
32
|
+
"lib/redns/record/mx.rb",
|
|
33
|
+
"lib/redns/record/null.rb",
|
|
34
|
+
"lib/redns/record/soa.rb",
|
|
35
|
+
"lib/redns/resolver.rb",
|
|
36
|
+
"lib/redns/resource.rb",
|
|
37
|
+
"lib/redns/support.rb",
|
|
38
|
+
"redns.gemspec",
|
|
39
|
+
"test/helper.rb",
|
|
40
|
+
"test/test_redns.rb",
|
|
41
|
+
"test/test_redns_address.rb",
|
|
42
|
+
"test/test_redns_buffer.rb",
|
|
43
|
+
"test/test_redns_connection.rb",
|
|
44
|
+
"test/test_redns_fragment.rb",
|
|
45
|
+
"test/test_redns_message.rb",
|
|
46
|
+
"test/test_redns_name.rb",
|
|
47
|
+
"test/test_redns_question.rb",
|
|
48
|
+
"test/test_redns_resolver.rb",
|
|
49
|
+
"test/test_redns_resource.rb",
|
|
50
|
+
"test/test_redns_support.rb"
|
|
52
51
|
]
|
|
53
52
|
s.homepage = %q{http://github.com/tadman/redns}
|
|
54
|
-
s.rdoc_options = ["--charset=UTF-8"]
|
|
55
53
|
s.require_paths = ["lib"]
|
|
56
|
-
s.rubygems_version = %q{1.
|
|
54
|
+
s.rubygems_version = %q{1.5.2}
|
|
57
55
|
s.summary = %q{Ruby Reactor-Ready DNS Library}
|
|
58
56
|
s.test_files = [
|
|
59
57
|
"test/helper.rb",
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
58
|
+
"test/test_redns.rb",
|
|
59
|
+
"test/test_redns_address.rb",
|
|
60
|
+
"test/test_redns_buffer.rb",
|
|
61
|
+
"test/test_redns_connection.rb",
|
|
62
|
+
"test/test_redns_fragment.rb",
|
|
63
|
+
"test/test_redns_message.rb",
|
|
64
|
+
"test/test_redns_name.rb",
|
|
65
|
+
"test/test_redns_question.rb",
|
|
66
|
+
"test/test_redns_resolver.rb",
|
|
67
|
+
"test/test_redns_resource.rb",
|
|
68
|
+
"test/test_redns_support.rb"
|
|
71
69
|
]
|
|
72
70
|
|
|
73
71
|
if s.respond_to? :specification_version then
|
|
74
|
-
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
75
72
|
s.specification_version = 3
|
|
76
73
|
|
|
77
74
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
metadata
CHANGED
|
@@ -1,12 +1,8 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: redns
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
prerelease:
|
|
5
|
-
|
|
6
|
-
- 0
|
|
7
|
-
- 1
|
|
8
|
-
- 9
|
|
9
|
-
version: 0.1.9
|
|
4
|
+
prerelease:
|
|
5
|
+
version: 0.1.10
|
|
10
6
|
platform: ruby
|
|
11
7
|
authors:
|
|
12
8
|
- tadman
|
|
@@ -14,7 +10,7 @@ autorequire:
|
|
|
14
10
|
bindir: bin
|
|
15
11
|
cert_chain: []
|
|
16
12
|
|
|
17
|
-
date:
|
|
13
|
+
date: 2011-02-25 00:00:00 -05:00
|
|
18
14
|
default_executable:
|
|
19
15
|
dependencies: []
|
|
20
16
|
|
|
@@ -28,7 +24,6 @@ extra_rdoc_files:
|
|
|
28
24
|
- README.rdoc
|
|
29
25
|
files:
|
|
30
26
|
- .document
|
|
31
|
-
- .gitignore
|
|
32
27
|
- README.rdoc
|
|
33
28
|
- Rakefile
|
|
34
29
|
- VERSION
|
|
@@ -65,8 +60,8 @@ homepage: http://github.com/tadman/redns
|
|
|
65
60
|
licenses: []
|
|
66
61
|
|
|
67
62
|
post_install_message:
|
|
68
|
-
rdoc_options:
|
|
69
|
-
|
|
63
|
+
rdoc_options: []
|
|
64
|
+
|
|
70
65
|
require_paths:
|
|
71
66
|
- lib
|
|
72
67
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
@@ -74,21 +69,17 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
74
69
|
requirements:
|
|
75
70
|
- - ">="
|
|
76
71
|
- !ruby/object:Gem::Version
|
|
77
|
-
segments:
|
|
78
|
-
- 0
|
|
79
72
|
version: "0"
|
|
80
73
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
81
74
|
none: false
|
|
82
75
|
requirements:
|
|
83
76
|
- - ">="
|
|
84
77
|
- !ruby/object:Gem::Version
|
|
85
|
-
segments:
|
|
86
|
-
- 0
|
|
87
78
|
version: "0"
|
|
88
79
|
requirements: []
|
|
89
80
|
|
|
90
81
|
rubyforge_project:
|
|
91
|
-
rubygems_version: 1.
|
|
82
|
+
rubygems_version: 1.5.2
|
|
92
83
|
signing_key:
|
|
93
84
|
specification_version: 3
|
|
94
85
|
summary: Ruby Reactor-Ready DNS Library
|