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.
Files changed (5) hide show
  1. data/VERSION +1 -1
  2. data/lib/redns/connection.rb +1 -3
  3. data/redns.gemspec +46 -49
  4. metadata +6 -15
  5. data/.gitignore +0 -16
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.9
1
+ 0.1.10
@@ -71,9 +71,7 @@ class ReDNS::Connection < EventMachine::Connection
71
71
  answers = answers.select { |a| a.rtype == type }
72
72
  end
73
73
 
74
- callback[:callback].call(
75
- answers.collect { |a| a.rdata.to_s }
76
- )
74
+ callback[:callback].call(answers)
77
75
  end
78
76
  end
79
77
 
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 the gemspec command
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.9"
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{2010-11-02}
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
- ".gitignore",
21
- "README.rdoc",
22
- "Rakefile",
23
- "VERSION",
24
- "lib/redns.rb",
25
- "lib/redns/address.rb",
26
- "lib/redns/buffer.rb",
27
- "lib/redns/connection.rb",
28
- "lib/redns/fragment.rb",
29
- "lib/redns/message.rb",
30
- "lib/redns/name.rb",
31
- "lib/redns/question.rb",
32
- "lib/redns/record.rb",
33
- "lib/redns/record/mx.rb",
34
- "lib/redns/record/null.rb",
35
- "lib/redns/record/soa.rb",
36
- "lib/redns/resolver.rb",
37
- "lib/redns/resource.rb",
38
- "lib/redns/support.rb",
39
- "redns.gemspec",
40
- "test/helper.rb",
41
- "test/test_redns.rb",
42
- "test/test_redns_address.rb",
43
- "test/test_redns_buffer.rb",
44
- "test/test_redns_connection.rb",
45
- "test/test_redns_fragment.rb",
46
- "test/test_redns_message.rb",
47
- "test/test_redns_name.rb",
48
- "test/test_redns_question.rb",
49
- "test/test_redns_resolver.rb",
50
- "test/test_redns_resource.rb",
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.3.7}
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
- "test/test_redns.rb",
61
- "test/test_redns_address.rb",
62
- "test/test_redns_buffer.rb",
63
- "test/test_redns_connection.rb",
64
- "test/test_redns_fragment.rb",
65
- "test/test_redns_message.rb",
66
- "test/test_redns_name.rb",
67
- "test/test_redns_question.rb",
68
- "test/test_redns_resolver.rb",
69
- "test/test_redns_resource.rb",
70
- "test/test_redns_support.rb"
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: false
5
- segments:
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: 2010-11-02 00:00:00 -04:00
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
- - --charset=UTF-8
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.3.7
82
+ rubygems_version: 1.5.2
92
83
  signing_key:
93
84
  specification_version: 3
94
85
  summary: Ruby Reactor-Ready DNS Library
data/.gitignore DELETED
@@ -1,16 +0,0 @@
1
- .DS_Store
2
- *.gem
3
-
4
- *.tmproj
5
- tmtags
6
-
7
- *~
8
- \#*
9
- .\#*
10
-
11
- *.swp
12
-
13
- coverage
14
- rdoc
15
- pkg
16
-