resolv-ipv6favor 0.0.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/.document +5 -0
- data/.gitignore +21 -0
- data/LICENSE +20 -0
- data/README.rdoc +39 -0
- data/Rakefile +52 -0
- data/VERSION +1 -0
- data/lib/resolv-ipv6favor.rb +39 -0
- data/resolv-ipv6favor.gemspec +54 -0
- data/test/helper.rb +10 -0
- data/test/test_resolv-ipv6favor.rb +13 -0
- metadata +84 -0
data/.document
ADDED
data/.gitignore
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2009 Ryosuke Yamazaki
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
ADDED
@@ -0,0 +1,39 @@
|
|
1
|
+
= resolv-ipv6favor
|
2
|
+
|
3
|
+
Resolver class for Ruby.
|
4
|
+
It looks up AAAA record first, then A record. Ruby's default resolver class (Resolv) looks up A record first, then AAAA record.
|
5
|
+
|
6
|
+
== Usage
|
7
|
+
|
8
|
+
for example, assume that "ipv6.example.net" have these records on DNS,
|
9
|
+
|
10
|
+
ipv6.example.net. 80000 IN A 192.0.2.1
|
11
|
+
ipv6.example.net. 80000 IN AAAA 2001:db8::1
|
12
|
+
|
13
|
+
then 'Resolv' class (in the Ruby Standard Library) behaves:
|
14
|
+
|
15
|
+
require 'resolv'
|
16
|
+
|
17
|
+
Resolv.getaddresses("ipv6.example.net") #=> ["192.0.2.1"]
|
18
|
+
Resolv.getaddress("ipv6.example.net") #=> ["192.0.2.1", "2001:db8::1"]
|
19
|
+
|
20
|
+
If you want to lookup AAAA record prior to A record, install 'resolv-ipv6favor', then:
|
21
|
+
|
22
|
+
require 'resolv-ipv6favor'
|
23
|
+
|
24
|
+
IPv6FavorResolv.getaddresses("ipv6.example.net") #=> ["2001:db8::1"]
|
25
|
+
IPv6FavorResolv.getaddress("ipv6.example.net") #=> ["2001:db8::1", "192.0.2.1"]
|
26
|
+
|
27
|
+
== Note on Patches/Pull Requests
|
28
|
+
|
29
|
+
* Fork the project.
|
30
|
+
* Make your feature addition or bug fix.
|
31
|
+
* Add tests for it. This is important so I don't break it in a
|
32
|
+
future version unintentionally.
|
33
|
+
* Commit, do not mess with rakefile, version, or history.
|
34
|
+
(if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
|
35
|
+
* Send me a pull request. Bonus points for topic branches.
|
36
|
+
|
37
|
+
== Copyright
|
38
|
+
|
39
|
+
Copyright (c) 2010 Ryosuke Yamazaki. See LICENSE for details.
|
data/Rakefile
ADDED
@@ -0,0 +1,52 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'rake'
|
3
|
+
|
4
|
+
begin
|
5
|
+
require 'jeweler'
|
6
|
+
Jeweler::Tasks.new do |gem|
|
7
|
+
gem.name = "resolv-ipv6favor"
|
8
|
+
gem.summary = %Q{simple resolver class that lookup AAAA records prior to A records}
|
9
|
+
gem.description = gem.summary
|
10
|
+
gem.email = "ryosuke.yamazaki@mac.com"
|
11
|
+
gem.homepage = "http://github.com/nappa/resolv-ipv6favor"
|
12
|
+
gem.authors = ["Ryosuke Yamazaki"]
|
13
|
+
gem.add_development_dependency "shoulda", ">= 0"
|
14
|
+
end
|
15
|
+
Jeweler::GemcutterTasks.new
|
16
|
+
rescue LoadError
|
17
|
+
puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
|
18
|
+
end
|
19
|
+
|
20
|
+
require 'rake/testtask'
|
21
|
+
Rake::TestTask.new(:test) do |test|
|
22
|
+
test.libs << 'lib' << 'test'
|
23
|
+
test.pattern = 'test/**/test_*.rb'
|
24
|
+
test.verbose = true
|
25
|
+
end
|
26
|
+
|
27
|
+
begin
|
28
|
+
require 'rcov/rcovtask'
|
29
|
+
Rcov::RcovTask.new do |test|
|
30
|
+
test.libs << 'test'
|
31
|
+
test.pattern = 'test/**/test_*.rb'
|
32
|
+
test.verbose = true
|
33
|
+
end
|
34
|
+
rescue LoadError
|
35
|
+
task :rcov do
|
36
|
+
abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
task :test => :check_dependencies
|
41
|
+
|
42
|
+
task :default => :test
|
43
|
+
|
44
|
+
require 'rake/rdoctask'
|
45
|
+
Rake::RDocTask.new do |rdoc|
|
46
|
+
version = File.exist?('VERSION') ? File.read('VERSION') : ""
|
47
|
+
|
48
|
+
rdoc.rdoc_dir = 'rdoc'
|
49
|
+
rdoc.title = "resolv-ipv6favor #{version}"
|
50
|
+
rdoc.rdoc_files.include('README*')
|
51
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
52
|
+
end
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
0.0.0
|
@@ -0,0 +1,39 @@
|
|
1
|
+
require 'resolv'
|
2
|
+
|
3
|
+
#
|
4
|
+
# =Resolver class that resolves AAAA record first, then A record
|
5
|
+
#
|
6
|
+
class IPv6FavorResolv
|
7
|
+
|
8
|
+
def self.each_address(name)
|
9
|
+
DefaultResolver.each_address(name)
|
10
|
+
end
|
11
|
+
|
12
|
+
def self.getaddresses(name)
|
13
|
+
DefaultResolver.getaddresses(name)
|
14
|
+
end
|
15
|
+
|
16
|
+
def self.getaddress(name)
|
17
|
+
DefaultResolver.getaddress(name)
|
18
|
+
end
|
19
|
+
|
20
|
+
def initialize(resolv_conf='/etc/resolv.conf')
|
21
|
+
@r = Resolv::DNS.new(resolv_conf)
|
22
|
+
end
|
23
|
+
DefaultResolver = self.new
|
24
|
+
|
25
|
+
def each_address(name)
|
26
|
+
@r.each_resource(name, Resolv::DNS::Resource::IN::AAAA) {|resource| yield resource.address}
|
27
|
+
@r.each_resource(name, Resolv::DNS::Resource::IN::A) {|resource| yield resource.address}
|
28
|
+
end
|
29
|
+
|
30
|
+
def getaddresses(name)
|
31
|
+
res = []
|
32
|
+
each_address(name) { |addr| res << addr}
|
33
|
+
res
|
34
|
+
end
|
35
|
+
|
36
|
+
def getaddress(name)
|
37
|
+
getaddresses(name)[0]
|
38
|
+
end
|
39
|
+
end
|
@@ -0,0 +1,54 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{resolv-ipv6favor}
|
8
|
+
s.version = "0.0.0"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Ryosuke Yamazaki"]
|
12
|
+
s.date = %q{2010-04-21}
|
13
|
+
s.description = %q{simple resolver class that lookup AAAA records prior to A records}
|
14
|
+
s.email = %q{ryosuke.yamazaki@mac.com}
|
15
|
+
s.extra_rdoc_files = [
|
16
|
+
"LICENSE",
|
17
|
+
"README.rdoc"
|
18
|
+
]
|
19
|
+
s.files = [
|
20
|
+
".document",
|
21
|
+
".gitignore",
|
22
|
+
"LICENSE",
|
23
|
+
"README.rdoc",
|
24
|
+
"Rakefile",
|
25
|
+
"VERSION",
|
26
|
+
"lib/resolv-ipv6favor.rb",
|
27
|
+
"resolv-ipv6favor.gemspec",
|
28
|
+
"test/helper.rb",
|
29
|
+
"test/test_resolv-ipv6favor.rb"
|
30
|
+
]
|
31
|
+
s.homepage = %q{http://github.com/nappa/resolv-ipv6favor}
|
32
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
33
|
+
s.require_paths = ["lib"]
|
34
|
+
s.rubygems_version = %q{1.3.6}
|
35
|
+
s.summary = %q{simple resolver class that lookup AAAA records prior to A records}
|
36
|
+
s.test_files = [
|
37
|
+
"test/helper.rb",
|
38
|
+
"test/test_resolv-ipv6favor.rb"
|
39
|
+
]
|
40
|
+
|
41
|
+
if s.respond_to? :specification_version then
|
42
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
43
|
+
s.specification_version = 3
|
44
|
+
|
45
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
46
|
+
s.add_development_dependency(%q<shoulda>, [">= 0"])
|
47
|
+
else
|
48
|
+
s.add_dependency(%q<shoulda>, [">= 0"])
|
49
|
+
end
|
50
|
+
else
|
51
|
+
s.add_dependency(%q<shoulda>, [">= 0"])
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
data/test/helper.rb
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
require 'helper'
|
2
|
+
require 'pp'
|
3
|
+
|
4
|
+
class TestResolvIpv6favor < Test::Unit::TestCase
|
5
|
+
should "resolv AAAA first then A" do
|
6
|
+
# XXX: I'm looking for better node for this test...
|
7
|
+
node = "www.iij.ad.jp"
|
8
|
+
|
9
|
+
assert IPv6FavorResolv.getaddress(node).kind_of?(Resolv::IPv6)
|
10
|
+
assert IPv6FavorResolv.getaddresses(node)[-1].kind_of?(Resolv::IPv4)
|
11
|
+
assert IPv6FavorResolv.getaddresses(node)[0].kind_of?(Resolv::IPv6)
|
12
|
+
end
|
13
|
+
end
|
metadata
ADDED
@@ -0,0 +1,84 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: resolv-ipv6favor
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 0
|
7
|
+
- 0
|
8
|
+
- 0
|
9
|
+
version: 0.0.0
|
10
|
+
platform: ruby
|
11
|
+
authors:
|
12
|
+
- Ryosuke Yamazaki
|
13
|
+
autorequire:
|
14
|
+
bindir: bin
|
15
|
+
cert_chain: []
|
16
|
+
|
17
|
+
date: 2010-04-21 00:00:00 +09:00
|
18
|
+
default_executable:
|
19
|
+
dependencies:
|
20
|
+
- !ruby/object:Gem::Dependency
|
21
|
+
name: shoulda
|
22
|
+
prerelease: false
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
25
|
+
- - ">="
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
segments:
|
28
|
+
- 0
|
29
|
+
version: "0"
|
30
|
+
type: :development
|
31
|
+
version_requirements: *id001
|
32
|
+
description: simple resolver class that lookup AAAA records prior to A records
|
33
|
+
email: ryosuke.yamazaki@mac.com
|
34
|
+
executables: []
|
35
|
+
|
36
|
+
extensions: []
|
37
|
+
|
38
|
+
extra_rdoc_files:
|
39
|
+
- LICENSE
|
40
|
+
- README.rdoc
|
41
|
+
files:
|
42
|
+
- .document
|
43
|
+
- .gitignore
|
44
|
+
- LICENSE
|
45
|
+
- README.rdoc
|
46
|
+
- Rakefile
|
47
|
+
- VERSION
|
48
|
+
- lib/resolv-ipv6favor.rb
|
49
|
+
- resolv-ipv6favor.gemspec
|
50
|
+
- test/helper.rb
|
51
|
+
- test/test_resolv-ipv6favor.rb
|
52
|
+
has_rdoc: true
|
53
|
+
homepage: http://github.com/nappa/resolv-ipv6favor
|
54
|
+
licenses: []
|
55
|
+
|
56
|
+
post_install_message:
|
57
|
+
rdoc_options:
|
58
|
+
- --charset=UTF-8
|
59
|
+
require_paths:
|
60
|
+
- lib
|
61
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
62
|
+
requirements:
|
63
|
+
- - ">="
|
64
|
+
- !ruby/object:Gem::Version
|
65
|
+
segments:
|
66
|
+
- 0
|
67
|
+
version: "0"
|
68
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
69
|
+
requirements:
|
70
|
+
- - ">="
|
71
|
+
- !ruby/object:Gem::Version
|
72
|
+
segments:
|
73
|
+
- 0
|
74
|
+
version: "0"
|
75
|
+
requirements: []
|
76
|
+
|
77
|
+
rubyforge_project:
|
78
|
+
rubygems_version: 1.3.6
|
79
|
+
signing_key:
|
80
|
+
specification_version: 3
|
81
|
+
summary: simple resolver class that lookup AAAA records prior to A records
|
82
|
+
test_files:
|
83
|
+
- test/helper.rb
|
84
|
+
- test/test_resolv-ipv6favor.rb
|