whois 0.9.0 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.rdoc +161 -21
- data/LICENSE.rdoc +1 -1
- data/Manifest +184 -13
- data/README.rdoc +24 -31
- data/Rakefile +7 -7
- data/bin/ruby-whois +9 -3
- data/data/ip_del_list +2 -0
- data/data/make_servers_charset.pl +21 -0
- data/data/make_tld_serv.pl +8 -7
- data/data/servers_charset_list +37 -0
- data/data/tld_serv_list +32 -30
- data/lib/whois.rb +0 -1
- data/lib/whois/answer.rb +24 -13
- data/lib/whois/answer/parser.rb +27 -16
- data/lib/whois/answer/parser/NOTES.txt +3 -0
- data/lib/whois/answer/parser/base.rb +140 -101
- data/lib/whois/answer/parser/jobswhois.verisign-grs.com.rb +99 -0
- data/lib/whois/answer/parser/whois.adamsnames.tc.rb +64 -0
- data/lib/whois/answer/parser/whois.aeda.net.ae.rb +65 -0
- data/lib/whois/answer/parser/whois.aero.rb +6 -6
- data/lib/whois/answer/parser/whois.afilias-grs.info.rb +6 -6
- data/lib/whois/answer/parser/whois.afilias.info.rb +12 -12
- data/lib/whois/answer/parser/whois.biz.rb +72 -0
- data/lib/whois/answer/parser/whois.cat.rb +74 -0
- data/lib/whois/answer/parser/whois.cira.ca.rb +77 -0
- data/lib/whois/answer/parser/whois.crsnic.net.rb +16 -13
- data/lib/whois/answer/parser/whois.denic.de.rb +14 -18
- data/lib/whois/answer/parser/whois.dk-hostmaster.dk.rb +75 -0
- data/lib/whois/answer/parser/whois.domain-registry.nl.rb +72 -0
- data/lib/whois/answer/parser/whois.domainregistry.ie.rb +7 -13
- data/lib/whois/answer/parser/whois.dotmobiregistry.net.rb +72 -0
- data/lib/whois/answer/parser/whois.educause.edu.rb +8 -8
- data/lib/whois/answer/parser/whois.eu.org.rb +8 -17
- data/lib/whois/answer/parser/whois.eu.rb +64 -0
- data/lib/whois/answer/parser/whois.iana.org.rb +6 -9
- data/lib/whois/answer/parser/whois.isnic.is.rb +72 -0
- data/lib/whois/answer/parser/whois.meregistry.net.rb +72 -0
- data/lib/whois/answer/parser/whois.museum.rb +76 -0
- data/lib/whois/answer/parser/whois.nic-se.se.rb +77 -0
- data/lib/whois/answer/parser/whois.nic.ac.rb +92 -0
- data/lib/whois/answer/parser/whois.nic.asia.rb +12 -12
- data/lib/whois/answer/parser/whois.nic.cc.rb +99 -0
- data/lib/whois/answer/parser/whois.nic.cd.rb +68 -0
- data/lib/whois/answer/parser/whois.nic.ch.rb +64 -0
- data/lib/whois/answer/parser/whois.nic.coop.rb +74 -0
- data/lib/whois/answer/parser/whois.nic.fr.rb +8 -11
- data/lib/whois/answer/parser/whois.nic.gl.rb +77 -0
- data/lib/whois/answer/parser/whois.nic.gov.rb +8 -17
- data/lib/whois/answer/parser/whois.nic.hu.rb +21 -19
- data/lib/whois/answer/parser/whois.nic.im.rb +68 -0
- data/lib/whois/answer/parser/whois.nic.io.rb +64 -0
- data/lib/whois/answer/parser/whois.nic.it.rb +16 -16
- data/lib/whois/answer/parser/whois.nic.ly.rb +76 -0
- data/lib/whois/answer/parser/whois.nic.mu.rb +77 -0
- data/lib/whois/answer/parser/whois.nic.name.rb +8 -17
- data/lib/whois/answer/parser/whois.nic.nu.rb +84 -0
- data/lib/whois/answer/parser/whois.nic.tel.rb +76 -0
- data/lib/whois/answer/parser/whois.nic.tl.rb +76 -0
- data/lib/whois/answer/parser/whois.nic.travel.rb +72 -0
- data/lib/whois/answer/parser/whois.nic.tv.rb +16 -13
- data/lib/whois/answer/parser/whois.nic.uk.rb +82 -0
- data/lib/whois/answer/parser/whois.nic.us.rb +72 -0
- data/lib/whois/answer/parser/whois.norid.no.rb +72 -0
- data/lib/whois/answer/parser/whois.publicinterestregistry.net.rb +16 -16
- data/lib/whois/answer/parser/whois.register.bg.rb +74 -0
- data/lib/whois/answer/parser/whois.registro.br.rb +64 -0
- data/lib/whois/answer/parser/whois.registrypro.pro.rb +77 -0
- data/lib/whois/answer/parser/whois.ripe.net.rb +64 -0
- data/lib/whois/answer/parser/whois.ripn.net.rb +72 -0
- data/lib/whois/answer/parser/whois.rotld.ro.rb +64 -0
- data/lib/whois/answer/parser/whois.samoanic.ws.rb +76 -0
- data/lib/whois/answer/parser/whois.za.net.rb +8 -11
- data/lib/whois/answer/parser/whois.za.org.rb +7 -10
- data/lib/whois/answer/super_struct.rb +1 -1
- data/lib/whois/client.rb +4 -4
- data/lib/whois/definitions/NOTES.txt +12 -0
- data/lib/whois/definitions/ipv4.rb +2 -0
- data/lib/whois/definitions/tlds.rb +27 -27
- data/lib/whois/errors.rb +11 -1
- data/lib/whois/server.rb +1 -0
- data/lib/whois/server/adapters/web.rb +1 -2
- data/lib/whois/version.rb +4 -4
- data/test/answer/parser/base_test.rb +16 -29
- data/test/answer/parser/jobswhois.verisign-grs.com_test.rb +122 -0
- data/test/answer/parser/whois.adamsnames.tc_test.rb +122 -0
- data/test/answer/parser/whois.aeda.net.ae_test.rb +63 -0
- data/test/answer/parser/whois.afilias-grs.info_test.rb +274 -13
- data/test/answer/parser/whois.afilias.info_test.rb +1 -1
- data/test/answer/parser/whois.biz_test.rb +51 -0
- data/test/answer/parser/whois.cat_test.rb +51 -0
- data/test/answer/parser/whois.cira.ca_test.rb +51 -0
- data/test/answer/parser/whois.crsnic.net_test.rb +8 -3
- data/test/answer/parser/whois.denic.de_test.rb +11 -18
- data/test/answer/parser/whois.dk-hostmaster.dk_test.rb +57 -0
- data/test/answer/parser/whois.domain-registry.nl_test.rb +49 -0
- data/test/answer/parser/whois.domainregistry.ie_test.rb +7 -11
- data/test/answer/parser/whois.dotmobiregistry.net_test.rb +51 -0
- data/test/answer/parser/whois.educause.edu_test.rb +3 -3
- data/test/answer/parser/whois.eu.org_test.rb +6 -12
- data/test/answer/parser/whois.eu_test.rb +45 -0
- data/test/answer/parser/whois.iana.org_test.rb +2 -4
- data/test/answer/parser/whois.isnic.is_test.rb +49 -0
- data/test/answer/parser/whois.meregistry.net_test.rb +51 -0
- data/test/answer/parser/whois.museum_test.rb +51 -0
- data/test/answer/parser/whois.nic-se.se_test.rb +58 -0
- data/test/answer/parser/whois.nic.ac_test.rb +126 -0
- data/test/answer/parser/whois.nic.asia_test.rb +1 -1
- data/test/answer/parser/whois.nic.cc_test.rb +122 -0
- data/test/answer/parser/whois.nic.cd_test.rb +49 -0
- data/test/answer/parser/whois.nic.ch_test.rb +45 -0
- data/test/answer/parser/whois.nic.coop_test.rb +51 -0
- data/test/answer/parser/whois.nic.fr_test.rb +178 -13
- data/test/answer/parser/whois.nic.gl_test.rb +51 -0
- data/test/answer/parser/whois.nic.gov_test.rb +6 -12
- data/test/answer/parser/whois.nic.hu_test.rb +9 -7
- data/test/answer/parser/whois.nic.im_test.rb +47 -0
- data/test/answer/parser/whois.nic.io_test.rb +45 -0
- data/test/answer/parser/whois.nic.it_test.rb +6 -3
- data/test/answer/parser/whois.nic.ly_test.rb +51 -0
- data/test/answer/parser/whois.nic.mu_test.rb +97 -0
- data/test/answer/parser/whois.nic.name_test.rb +6 -12
- data/test/answer/parser/whois.nic.nu_test.rb +59 -0
- data/test/answer/parser/whois.nic.tel_test.rb +51 -0
- data/test/answer/parser/whois.nic.tl_test.rb +51 -0
- data/test/answer/parser/whois.nic.travel_test.rb +51 -0
- data/test/answer/parser/whois.nic.tv_test.rb +9 -5
- data/test/answer/parser/whois.nic.uk_test.rb +63 -0
- data/test/answer/parser/whois.nic.us_test.rb +51 -0
- data/test/answer/parser/whois.norid.no_test.rb +49 -0
- data/test/answer/parser/whois.register.bg_test.rb +49 -0
- data/test/answer/parser/whois.registro.br_test.rb +45 -0
- data/test/answer/parser/whois.registrypro.pro_test.rb +84 -0
- data/test/answer/parser/whois.ripe.net_test.rb +203 -0
- data/test/answer/parser/whois.ripn.net_test.rb +94 -0
- data/test/answer/parser/whois.rotld.ro_test.rb +45 -0
- data/test/answer/parser/whois.samoanic.ws_test.rb +51 -0
- data/test/answer/parser/whois.za.net_test.rb +2 -4
- data/test/answer/parser/whois.za.org_test.rb +2 -4
- data/test/answer/parser_test.rb +71 -48
- data/test/answer_test.rb +57 -21
- data/test/client_test.rb +5 -2
- data/test/errors_test.rb +23 -0
- data/test/list_tld +74 -76
- data/test/testcases/responses/jobswhois.verisign-grs.com/available.txt +44 -0
- data/test/testcases/responses/jobswhois.verisign-grs.com/registered.txt +54 -0
- data/test/testcases/responses/super_struct_test.rb +3 -4
- data/test/testcases/responses/whois.adamsnames.tc/gd/available.txt +2 -0
- data/test/testcases/responses/whois.adamsnames.tc/gd/registered.txt +26 -0
- data/test/testcases/responses/whois.adamsnames.tc/tc/available.txt +2 -0
- data/test/testcases/responses/whois.adamsnames.tc/tc/registered.txt +28 -0
- data/test/testcases/responses/whois.adamsnames.tc/vg/available.txt +2 -0
- data/test/testcases/responses/whois.adamsnames.tc/vg/registered.txt +28 -0
- data/test/testcases/responses/whois.aeda.net.ae/available.txt +1 -0
- data/test/testcases/responses/whois.aeda.net.ae/registered.txt +15 -0
- data/test/testcases/responses/whois.biz/available.txt +25 -0
- data/test/testcases/responses/whois.biz/registered.txt +89 -0
- data/test/testcases/responses/whois.cat/available.txt +18 -0
- data/test/testcases/responses/whois.cat/registered.txt +83 -0
- data/test/testcases/responses/whois.cira.ca/available.txt +9 -0
- data/test/testcases/responses/whois.cira.ca/registered.txt +47 -0
- data/test/testcases/responses/whois.dk-hostmaster.dk/available.txt +15 -0
- data/test/testcases/responses/whois.dk-hostmaster.dk/registered.txt +47 -0
- data/test/testcases/responses/whois.domain-registry.nl/available.txt +21 -0
- data/test/testcases/responses/whois.domain-registry.nl/registered.txt +67 -0
- data/test/testcases/responses/whois.dotmobiregistry.net/available.txt +25 -0
- data/test/testcases/responses/whois.dotmobiregistry.net/registered.txt +81 -0
- data/test/testcases/responses/whois.eu/available.txt +47 -0
- data/test/testcases/responses/whois.eu/registered.txt +63 -0
- data/test/testcases/responses/whois.isnic.is/available.txt +7 -0
- data/test/testcases/responses/whois.isnic.is/registered.txt +57 -0
- data/test/testcases/responses/{whois.afilias-grs.info → whois.meregistry.net}/available.txt +0 -0
- data/test/testcases/responses/whois.meregistry.net/registered.txt +94 -0
- data/test/testcases/responses/whois.museum/available.txt +18 -0
- data/test/testcases/responses/whois.museum/registered.txt +92 -0
- data/test/testcases/responses/whois.nic-se.se/available.txt +21 -0
- data/test/testcases/responses/whois.nic-se.se/registered.txt +37 -0
- data/test/testcases/responses/whois.nic.ac/available.txt +2 -0
- data/test/testcases/responses/whois.nic.ac/registered.txt +2 -0
- data/test/testcases/responses/whois.nic.cc/available.txt +44 -0
- data/test/testcases/responses/whois.nic.cc/registered.txt +58 -0
- data/test/testcases/responses/whois.nic.cd/available.txt +1 -0
- data/test/testcases/responses/whois.nic.cd/registered.txt +85 -0
- data/test/testcases/responses/whois.nic.ch/available.txt +2 -0
- data/test/testcases/responses/whois.nic.ch/registered.txt +28 -0
- data/test/testcases/responses/whois.nic.coop/available.txt +33 -0
- data/test/testcases/responses/whois.nic.coop/registered.txt +123 -0
- data/test/testcases/responses/whois.nic.fr/{available.txt → fr/available.txt} +0 -0
- data/test/testcases/responses/whois.nic.fr/{registered.txt → fr/registered.txt} +0 -0
- data/test/testcases/responses/whois.nic.fr/pm/available.txt +19 -0
- data/test/testcases/responses/whois.nic.fr/pm/registered.txt +88 -0
- data/test/testcases/responses/whois.nic.fr/re/available.txt +19 -0
- data/test/testcases/responses/whois.nic.fr/re/registered.txt +83 -0
- data/test/testcases/responses/whois.nic.fr/wf/available.txt +19 -0
- data/test/testcases/responses/whois.nic.fr/wf/registered.txt +88 -0
- data/test/testcases/responses/whois.nic.fr/yt/available.txt +19 -0
- data/test/testcases/responses/whois.nic.fr/yt/registered.txt +88 -0
- data/test/testcases/responses/whois.nic.gl/available.txt +23 -0
- data/test/testcases/responses/whois.nic.gl/registered.txt +40 -0
- data/test/testcases/responses/whois.nic.hu/available.txt +5 -5
- data/test/testcases/responses/whois.nic.hu/in_progress.txt +5 -5
- data/test/testcases/responses/whois.nic.hu/registered.txt +6 -6
- data/test/testcases/responses/whois.nic.im/available.txt +2 -0
- data/test/testcases/responses/whois.nic.im/registered.txt +45 -0
- data/test/testcases/responses/whois.nic.io/available.txt +2 -0
- data/test/testcases/responses/whois.nic.io/registered.txt +2 -0
- data/test/testcases/responses/whois.nic.ly/available.txt +1 -0
- data/test/testcases/responses/whois.nic.ly/registered.txt +65 -0
- data/test/testcases/responses/whois.nic.mu/ki/available.txt +20 -0
- data/test/testcases/responses/whois.nic.mu/ki/registered.txt +30 -0
- data/test/testcases/responses/whois.nic.mu/mu/available.txt +9 -0
- data/test/testcases/responses/whois.nic.mu/mu/registered.txt +22 -0
- data/test/testcases/responses/whois.nic.nu/available.txt +19 -0
- data/test/testcases/responses/whois.nic.nu/registered.txt +35 -0
- data/test/testcases/responses/whois.nic.tel/available.txt +59 -0
- data/test/testcases/responses/whois.nic.tel/registered.txt +111 -0
- data/test/testcases/responses/whois.nic.tl/available.txt +21 -0
- data/test/testcases/responses/whois.nic.tl/registered.txt +29 -0
- data/test/testcases/responses/whois.nic.travel/available.txt +25 -0
- data/test/testcases/responses/whois.nic.travel/registered.txt +75 -0
- data/test/testcases/responses/whois.nic.uk/available.txt +20 -0
- data/test/testcases/responses/whois.nic.uk/invalid.txt +22 -0
- data/test/testcases/responses/whois.nic.uk/registered.txt +50 -0
- data/test/testcases/responses/whois.nic.us/available.txt +29 -0
- data/test/testcases/responses/whois.nic.us/registered.txt +99 -0
- data/test/testcases/responses/whois.norid.no/available.txt +5 -0
- data/test/testcases/responses/whois.norid.no/registered.txt +34 -0
- data/test/testcases/responses/whois.register.bg/available.txt +1 -0
- data/test/testcases/responses/whois.register.bg/registered.txt +44 -0
- data/test/testcases/responses/whois.registro.br/available.txt +22 -0
- data/test/testcases/responses/whois.registro.br/registered.txt +23 -0
- data/test/testcases/responses/whois.registrypro.pro/available.txt +20 -0
- data/test/testcases/responses/whois.registrypro.pro/registered.txt +62 -0
- data/test/testcases/responses/whois.ripe.net/fo/available.txt +11 -0
- data/test/testcases/responses/whois.ripe.net/fo/registered.txt +45 -0
- data/test/testcases/responses/whois.ripe.net/gm/available.txt +11 -0
- data/test/testcases/responses/whois.ripe.net/gm/registered.txt +37 -0
- data/test/testcases/responses/whois.ripe.net/mc/available.txt +11 -0
- data/test/testcases/responses/whois.ripe.net/mc/registered.txt +36 -0
- data/test/testcases/responses/whois.ripe.net/sm/available.txt +11 -0
- data/test/testcases/responses/whois.ripe.net/sm/registered.txt +60 -0
- data/test/testcases/responses/whois.ripe.net/va/available.txt +11 -0
- data/test/testcases/responses/whois.ripe.net/va/registered.txt +48 -0
- data/test/testcases/responses/whois.ripn.net/ru/available.txt +9 -0
- data/test/testcases/responses/whois.ripn.net/ru/registered.txt +24 -0
- data/test/testcases/responses/whois.ripn.net/su/available.txt +9 -0
- data/test/testcases/responses/whois.ripn.net/su/registered.txt +20 -0
- data/test/testcases/responses/whois.rotld.ro/available.txt +16 -0
- data/test/testcases/responses/whois.rotld.ro/registered.txt +27 -0
- data/test/testcases/responses/whois.samoanic.ws/available.txt +12 -0
- data/test/testcases/responses/whois.samoanic.ws/registered.txt +34 -0
- data/whois.gemspec +19 -19
- metadata +274 -31
- data/lib/whois/answer/parser/README.rdoc +0 -21
- data/lib/whois/definitions/ipv4.txt +0 -214
- data/lib/whois/definitions/ipv6.txt +0 -32
- data/lib/whois/definitions/tld.notes.txt +0 -1
- data/lib/whois/definitions/tlds.txt +0 -354
- data/lib/whois/whois.rb +0 -185
- data/test/testcases/responses/whois.afilias-grs.info/registered.txt +0 -122
- data/test/testcases/responses/whois.nic.fr/MULTIPLE.txt +0 -4
- data/test/whois_test.rb +0 -32
- data/utils/tlds.txt +0 -318
@@ -0,0 +1,44 @@
|
|
1
|
+
|
2
|
+
Whois Server Version 1.0
|
3
|
+
|
4
|
+
Domain names can now be registered with many different competing registrars.
|
5
|
+
Go to http://registrar.verisign-grs.com/whois/ for detailed information.
|
6
|
+
|
7
|
+
No match for "U34JEDZCQ.JOBS".
|
8
|
+
|
9
|
+
>>> Last update of whois database: Wed, 23 Dec 2009 08:04:37 EST <<<
|
10
|
+
|
11
|
+
NOTICE: The expiration date displayed in this record is the date the
|
12
|
+
registrar's sponsorship of the domain name registration in the registry is
|
13
|
+
currently set to expire. This date does not necessarily reflect the
|
14
|
+
expiration date of the domain name registrant's agreement with the
|
15
|
+
sponsoring registrar. Users may consult the sponsoring registrar's
|
16
|
+
Whois database to view the registrar's reported date of expiration
|
17
|
+
for this registration.
|
18
|
+
|
19
|
+
TERMS OF USE: You are not authorized to access or query our Whois
|
20
|
+
database through the use of electronic processes that are high-volume and
|
21
|
+
automated except as reasonably necessary to register domain names or
|
22
|
+
modify existing registrations; the Data in VeriSign's ("VeriSign") Whois
|
23
|
+
database is provided by VeriSign for information purposes only, and to
|
24
|
+
assist persons in obtaining information about or related to a domain name
|
25
|
+
registration record. VeriSign does not guarantee its accuracy.
|
26
|
+
By submitting a Whois query, you agree to abide by the following terms of
|
27
|
+
use: You agree that you may use this Data only for lawful purposes and that
|
28
|
+
under no circumstances will you use this Data to: (1) allow, enable, or
|
29
|
+
otherwise support the transmission of mass unsolicited, commercial
|
30
|
+
advertising or solicitations via e-mail, telephone, or facsimile; or
|
31
|
+
(2) enable high volume, automated, electronic processes that apply to
|
32
|
+
VeriSign (or its computer systems). The compilation, repackaging,
|
33
|
+
dissemination or other use of this Data is expressly prohibited without
|
34
|
+
the prior written consent of VeriSign. You agree not to use electronic
|
35
|
+
processes that are automated and high-volume to access or query the
|
36
|
+
Whois database except as reasonably necessary to register domain names
|
37
|
+
or modify existing registrations. VeriSign reserves the right to restrict
|
38
|
+
your access to the Whois database in its sole discretion to ensure
|
39
|
+
operational stability. VeriSign may restrict or terminate your access to the
|
40
|
+
Whois database for failure to abide by these terms of use. VeriSign
|
41
|
+
reserves the right to modify these terms at any time.
|
42
|
+
|
43
|
+
The Registry database contains ONLY .cc, .tv, and .jobs domains
|
44
|
+
and Registrars.
|
@@ -0,0 +1,54 @@
|
|
1
|
+
|
2
|
+
Whois Server Version 1.0
|
3
|
+
|
4
|
+
Domain names can now be registered with many different competing registrars.
|
5
|
+
Go to http://registrar.verisign-grs.com/whois/ for detailed information.
|
6
|
+
|
7
|
+
Domain Name: GOTO.JOBS
|
8
|
+
Registrar: ENCIRCA, INC
|
9
|
+
Whois Server: whois.encirca.com
|
10
|
+
Referral URL: http://www.encirca.com
|
11
|
+
Name Server: NS2.REGISTRY.JOBS
|
12
|
+
Name Server: NS1.REGISTRY.JOBS
|
13
|
+
Status: ACTIVE
|
14
|
+
Updated Date: 20-feb-2009
|
15
|
+
Creation Date: 21-feb-2006
|
16
|
+
Expiration Date: 21-feb-2010
|
17
|
+
|
18
|
+
|
19
|
+
>>> Last update of whois database: Wed, 23 Dec 2009 08:01:53 EST <<<
|
20
|
+
|
21
|
+
NOTICE: The expiration date displayed in this record is the date the
|
22
|
+
registrar's sponsorship of the domain name registration in the registry is
|
23
|
+
currently set to expire. This date does not necessarily reflect the
|
24
|
+
expiration date of the domain name registrant's agreement with the
|
25
|
+
sponsoring registrar. Users may consult the sponsoring registrar's
|
26
|
+
Whois database to view the registrar's reported date of expiration
|
27
|
+
for this registration.
|
28
|
+
|
29
|
+
TERMS OF USE: You are not authorized to access or query our Whois
|
30
|
+
database through the use of electronic processes that are high-volume and
|
31
|
+
automated except as reasonably necessary to register domain names or
|
32
|
+
modify existing registrations; the Data in VeriSign's ("VeriSign") Whois
|
33
|
+
database is provided by VeriSign for information purposes only, and to
|
34
|
+
assist persons in obtaining information about or related to a domain name
|
35
|
+
registration record. VeriSign does not guarantee its accuracy.
|
36
|
+
By submitting a Whois query, you agree to abide by the following terms of
|
37
|
+
use: You agree that you may use this Data only for lawful purposes and that
|
38
|
+
under no circumstances will you use this Data to: (1) allow, enable, or
|
39
|
+
otherwise support the transmission of mass unsolicited, commercial
|
40
|
+
advertising or solicitations via e-mail, telephone, or facsimile; or
|
41
|
+
(2) enable high volume, automated, electronic processes that apply to
|
42
|
+
VeriSign (or its computer systems). The compilation, repackaging,
|
43
|
+
dissemination or other use of this Data is expressly prohibited without
|
44
|
+
the prior written consent of VeriSign. You agree not to use electronic
|
45
|
+
processes that are automated and high-volume to access or query the
|
46
|
+
Whois database except as reasonably necessary to register domain names
|
47
|
+
or modify existing registrations. VeriSign reserves the right to restrict
|
48
|
+
your access to the Whois database in its sole discretion to ensure
|
49
|
+
operational stability. VeriSign may restrict or terminate your access to the
|
50
|
+
Whois database for failure to abide by these terms of use. VeriSign
|
51
|
+
reserves the right to modify these terms at any time.
|
52
|
+
|
53
|
+
The Registry database contains ONLY .cc, .tv, and .jobs domains
|
54
|
+
and Registrars.
|
@@ -2,16 +2,15 @@ require 'test_helper'
|
|
2
2
|
|
3
3
|
class SuperStructTest < Test::Unit::TestCase
|
4
4
|
|
5
|
-
|
5
|
+
SuperEroe = Class.new(SuperStruct.new(:name, :supername))
|
6
6
|
|
7
|
-
|
8
7
|
def setup
|
9
|
-
@klass =
|
8
|
+
@klass = SuperEroe
|
10
9
|
end
|
11
10
|
|
12
11
|
def test_initialize_with_block
|
13
12
|
@klass.new do |instance|
|
14
|
-
assert_instance_of
|
13
|
+
assert_instance_of SuperEroe, instance
|
15
14
|
assert_kind_of SuperStruct, instance
|
16
15
|
end
|
17
16
|
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
Yes
|
2
|
+
google.gd is registered.
|
3
|
+
|
4
|
+
Domain Name: google.gd
|
5
|
+
|
6
|
+
Registrant, Technical Contact, Admin. Contact
|
7
|
+
Google, Inc.
|
8
|
+
1600 Amphitheatre Parkway, Mountain View, CA, 94043
|
9
|
+
United States
|
10
|
+
E-mail: dns-admin@google.com
|
11
|
+
Phone: +1 650 330 0100 x1005
|
12
|
+
Fax: +1 650 618 1499
|
13
|
+
|
14
|
+
Billing Contact
|
15
|
+
MarkMonitor
|
16
|
+
PMB 155, 10400 Overland Road, Boise, Idaho 83709
|
17
|
+
United States
|
18
|
+
E-mail: ccops@markmonitor.com
|
19
|
+
Phone: +1.2083895740
|
20
|
+
Fax: +1.208389 5771
|
21
|
+
|
22
|
+
Resource Records (2):
|
23
|
+
ns ns1.google.com
|
24
|
+
ns ns2.google.com
|
25
|
+
|
26
|
+
|
@@ -0,0 +1,28 @@
|
|
1
|
+
Yes
|
2
|
+
google.tc is registered.
|
3
|
+
|
4
|
+
Domain Name: google.tc
|
5
|
+
|
6
|
+
Registrant, Technical Contact, Admin. Contact
|
7
|
+
Google, Inc.
|
8
|
+
1600 Amphitheatre Parkway, Mountain View, CA, 94043
|
9
|
+
United States
|
10
|
+
E-mail: dns-admin@google.com
|
11
|
+
Phone: +1 650 330 0100 x1005
|
12
|
+
Fax: +1 650 618 1499
|
13
|
+
|
14
|
+
Billing Contact
|
15
|
+
MarkMonitor
|
16
|
+
PMB 155, 10400 Overland Road, Boise, Idaho 83709
|
17
|
+
United States
|
18
|
+
E-mail: ccops@markmonitor.com
|
19
|
+
Phone: +1.2083895740
|
20
|
+
Fax: +1.208389 5771
|
21
|
+
|
22
|
+
Resource Records (4):
|
23
|
+
ns ns1.google.com
|
24
|
+
ns ns2.google.com
|
25
|
+
ns ns3.google.com
|
26
|
+
ns ns4.google.com
|
27
|
+
|
28
|
+
|
@@ -0,0 +1,28 @@
|
|
1
|
+
Yes
|
2
|
+
google.vg is registered.
|
3
|
+
|
4
|
+
Domain Name: google.vg
|
5
|
+
|
6
|
+
Registrant, Technical Contact, Admin. Contact
|
7
|
+
Google, Inc.
|
8
|
+
1600 Amphitheatre Parkway, Mountain View, CA, 94043
|
9
|
+
United States
|
10
|
+
E-mail: dns-admin@google.com
|
11
|
+
Phone: +1 650 330 0100 x1005
|
12
|
+
Fax: +1 650 618 1499
|
13
|
+
|
14
|
+
Billing Contact
|
15
|
+
MarkMonitor
|
16
|
+
PMB 155, 10400 Overland Road, Boise, Idaho 83709
|
17
|
+
United States
|
18
|
+
E-mail: ccops@markmonitor.com
|
19
|
+
Phone: +1.2083895740
|
20
|
+
Fax: +1.208389 5771
|
21
|
+
|
22
|
+
Resource Records (4):
|
23
|
+
ns ns1.google.com
|
24
|
+
ns ns2.google.com
|
25
|
+
ns ns3.google.com
|
26
|
+
ns ns4.google.com
|
27
|
+
|
28
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
No Data Found
|
@@ -0,0 +1,15 @@
|
|
1
|
+
Domain Name: google.ae
|
2
|
+
Registrar ID: markmonitor
|
3
|
+
Registrar Name: MarkMonitor
|
4
|
+
Status: ok
|
5
|
+
|
6
|
+
Registrant Contact ID: R039097
|
7
|
+
Registrant Contact Name: GOOGLE INC
|
8
|
+
Registrant Contact Email: Visit whois.aeda.net.ae for Web based WhoIs
|
9
|
+
|
10
|
+
Tech Contact ID: C077369
|
11
|
+
Tech Contact Name: GOOGLE INC
|
12
|
+
Tech Contact Email: Visit whois.aeda.net.ae for Web based WhoIs
|
13
|
+
|
14
|
+
Name Server: ns1.google.com
|
15
|
+
Name Server: ns2.google.com
|
@@ -0,0 +1,25 @@
|
|
1
|
+
Not found: u34jedzcq.biz
|
2
|
+
|
3
|
+
>>>> Whois database was last updated on: Fri Dec 25 14:41:05 GMT 2009 <<<<
|
4
|
+
|
5
|
+
NeuStar, Inc., the Registry Operator for .BIZ, has collected this information
|
6
|
+
for the WHOIS database through an ICANN-Accredited Registrar. This information
|
7
|
+
is provided to you for informational purposes only and is designed to assist
|
8
|
+
persons in determining contents of a domain name registration record in the
|
9
|
+
NeuStar registry database. NeuStar makes this information available to you
|
10
|
+
"as is" and does not guarantee its accuracy. By submitting a WHOIS query, you
|
11
|
+
agree that you will use this data only for lawful purposes and that, under no
|
12
|
+
circumstances will you use this data: (1) to allow, enable, or otherwise
|
13
|
+
support the transmission of mass unsolicited, commercial advertising or
|
14
|
+
solicitations via direct mail, electronic mail, or by telephone; (2) in
|
15
|
+
contravention of any applicable data and privacy protection acts; or (3) to
|
16
|
+
enable high volume, automated, electronic processes that apply to the registry
|
17
|
+
(or its systems). Compilation, repackaging, dissemination, or other use of the
|
18
|
+
WHOIS database in its entirety, or of a substantial portion thereof, is not
|
19
|
+
allowed without NeuStar's prior written permission. NeuStar reserves the
|
20
|
+
right to modify or change these conditions at any time without prior or
|
21
|
+
subsequent notification of any kind. By executing this query, in any manner
|
22
|
+
whatsoever, you agree to abide by these terms.
|
23
|
+
|
24
|
+
NOTE: FAILURE TO LOCATE A RECORD IN THE WHOIS DATABASE IS NOT INDICATIVE
|
25
|
+
OF THE AVAILABILITY OF A DOMAIN NAME.
|
@@ -0,0 +1,89 @@
|
|
1
|
+
Domain Name: GOOGLE.BIZ
|
2
|
+
Domain ID: D2835288-BIZ
|
3
|
+
Sponsoring Registrar: MARKMONITOR, INC.
|
4
|
+
Sponsoring Registrar IANA ID: 292
|
5
|
+
Domain Status: clientDeleteProhibited
|
6
|
+
Domain Status: clientTransferProhibited
|
7
|
+
Domain Status: clientUpdateProhibited
|
8
|
+
Registrant ID: MMR-32103
|
9
|
+
Registrant Name: DNS Admin
|
10
|
+
Registrant Organization: Google Inc.
|
11
|
+
Registrant Address1: 2400 E. Bayshore Pkwy
|
12
|
+
Registrant City: Mountain View
|
13
|
+
Registrant State/Province: CA
|
14
|
+
Registrant Postal Code: 94043
|
15
|
+
Registrant Country: United States
|
16
|
+
Registrant Country Code: US
|
17
|
+
Registrant Phone Number: +1.6503300100
|
18
|
+
Registrant Facsimile Number: +1.6506181499
|
19
|
+
Registrant Email: dns-admin@GOOGLE.COM
|
20
|
+
Administrative Contact ID: MMR-32104
|
21
|
+
Administrative Contact Name: DNS Admin
|
22
|
+
Administrative Contact Organization: Google Inc.
|
23
|
+
Administrative Contact Address1: 2400 E. Bayshore Pkwy
|
24
|
+
Administrative Contact City: Mountain View
|
25
|
+
Administrative Contact State/Province: CA
|
26
|
+
Administrative Contact Postal Code: 94043
|
27
|
+
Administrative Contact Country: United States
|
28
|
+
Administrative Contact Country Code: US
|
29
|
+
Administrative Contact Phone Number: +1.6503300100
|
30
|
+
Administrative Contact Facsimile Number: +1.6506181499
|
31
|
+
Administrative Contact Email: dns-admin@GOOGLE.COM
|
32
|
+
Billing Contact ID: MMR-32106
|
33
|
+
Billing Contact Name: DNS Admin
|
34
|
+
Billing Contact Organization: Google Inc.
|
35
|
+
Billing Contact Address1: 2400 E. Bayshore Pkwy
|
36
|
+
Billing Contact City: Mountain View
|
37
|
+
Billing Contact State/Province: CA
|
38
|
+
Billing Contact Postal Code: 94043
|
39
|
+
Billing Contact Country: United States
|
40
|
+
Billing Contact Country Code: US
|
41
|
+
Billing Contact Phone Number: +1.6503300100
|
42
|
+
Billing Contact Facsimile Number: +1.6506181499
|
43
|
+
Billing Contact Email: dns-admin@GOOGLE.COM
|
44
|
+
Technical Contact ID: MMR-32105
|
45
|
+
Technical Contact Name: DNS Admin
|
46
|
+
Technical Contact Organization: Google Inc.
|
47
|
+
Technical Contact Address1: 2400 E. Bayshore Pkwy
|
48
|
+
Technical Contact City: Mountain View
|
49
|
+
Technical Contact State/Province: CA
|
50
|
+
Technical Contact Postal Code: 94043
|
51
|
+
Technical Contact Country: United States
|
52
|
+
Technical Contact Country Code: US
|
53
|
+
Technical Contact Phone Number: +1.6503300100
|
54
|
+
Technical Contact Facsimile Number: +1.6506181499
|
55
|
+
Technical Contact Email: dns-admin@google.com
|
56
|
+
Name Server: NS1.GOOGLE.COM
|
57
|
+
Name Server: NS2.GOOGLE.COM
|
58
|
+
Name Server: NS3.GOOGLE.COM
|
59
|
+
Name Server: NS4.GOOGLE.COM
|
60
|
+
Created by Registrar: ENOM, INC.
|
61
|
+
Last Updated by Registrar: MARKMONITOR, INC.
|
62
|
+
Last Transferred Date: Fri Jul 22 16:43:18 GMT 2005
|
63
|
+
Domain Registration Date: Wed Mar 27 00:01:00 GMT 2002
|
64
|
+
Domain Expiration Date: Fri Mar 26 23:59:59 GMT 2010
|
65
|
+
Domain Last Updated Date: Sun Mar 01 12:01:04 GMT 2009
|
66
|
+
|
67
|
+
>>>> Whois database was last updated on: Fri Dec 25 14:38:18 GMT 2009 <<<<
|
68
|
+
|
69
|
+
NeuStar, Inc., the Registry Operator for .BIZ, has collected this information
|
70
|
+
for the WHOIS database through an ICANN-Accredited Registrar. This information
|
71
|
+
is provided to you for informational purposes only and is designed to assist
|
72
|
+
persons in determining contents of a domain name registration record in the
|
73
|
+
NeuStar registry database. NeuStar makes this information available to you
|
74
|
+
"as is" and does not guarantee its accuracy. By submitting a WHOIS query, you
|
75
|
+
agree that you will use this data only for lawful purposes and that, under no
|
76
|
+
circumstances will you use this data: (1) to allow, enable, or otherwise
|
77
|
+
support the transmission of mass unsolicited, commercial advertising or
|
78
|
+
solicitations via direct mail, electronic mail, or by telephone; (2) in
|
79
|
+
contravention of any applicable data and privacy protection acts; or (3) to
|
80
|
+
enable high volume, automated, electronic processes that apply to the registry
|
81
|
+
(or its systems). Compilation, repackaging, dissemination, or other use of the
|
82
|
+
WHOIS database in its entirety, or of a substantial portion thereof, is not
|
83
|
+
allowed without NeuStar's prior written permission. NeuStar reserves the
|
84
|
+
right to modify or change these conditions at any time without prior or
|
85
|
+
subsequent notification of any kind. By executing this query, in any manner
|
86
|
+
whatsoever, you agree to abide by these terms.
|
87
|
+
|
88
|
+
NOTE: FAILURE TO LOCATE A RECORD IN THE WHOIS DATABASE IS NOT INDICATIVE
|
89
|
+
OF THE AVAILABILITY OF A DOMAIN NAME.
|
@@ -0,0 +1,18 @@
|
|
1
|
+
% puntCAT Whois Server Copyright (C) 2007 Fundacio puntCAT
|
2
|
+
%
|
3
|
+
% NOTICE: Access to puntCAT Whois information is provided to assist in
|
4
|
+
% determining the contents of an object name registration record in the
|
5
|
+
% puntCAT database. The data in this record is provided by puntCAT for
|
6
|
+
% informational purposes only, and puntCAT does not guarantee its
|
7
|
+
% accuracy. This service is intended only for query-based access. You
|
8
|
+
% agree that you will use this data only for lawful purposes and that,
|
9
|
+
% under no circumstances will you use this data to: (a) allow, enable,
|
10
|
+
% or otherwise support the transmission by e-mail, telephone or
|
11
|
+
% facsimile of unsolicited, commercial advertising or solicitations; or
|
12
|
+
% (b) enable automated, electronic processes that send queries or data
|
13
|
+
% to the systems of puntCAT or registry operators, except as reasonably
|
14
|
+
% necessary to register object names or modify existing registrations.
|
15
|
+
% All rights reserved. puntCAT reserves the right to modify these terms at
|
16
|
+
% any time. By submitting this query, you agree to abide by this policy.
|
17
|
+
%
|
18
|
+
% Object "u34jedzcq.cat" NOT FOUND.
|
@@ -0,0 +1,83 @@
|
|
1
|
+
% puntCAT Whois Server Copyright (C) 2007 Fundacio puntCAT
|
2
|
+
%
|
3
|
+
% NOTICE: Access to puntCAT Whois information is provided to assist in
|
4
|
+
% determining the contents of an object name registration record in the
|
5
|
+
% puntCAT database. The data in this record is provided by puntCAT for
|
6
|
+
% informational purposes only, and puntCAT does not guarantee its
|
7
|
+
% accuracy. This service is intended only for query-based access. You
|
8
|
+
% agree that you will use this data only for lawful purposes and that,
|
9
|
+
% under no circumstances will you use this data to: (a) allow, enable,
|
10
|
+
% or otherwise support the transmission by e-mail, telephone or
|
11
|
+
% facsimile of unsolicited, commercial advertising or solicitations; or
|
12
|
+
% (b) enable automated, electronic processes that send queries or data
|
13
|
+
% to the systems of puntCAT or registry operators, except as reasonably
|
14
|
+
% necessary to register object names or modify existing registrations.
|
15
|
+
% All rights reserved. puntCAT reserves the right to modify these terms at
|
16
|
+
% any time. By submitting this query, you agree to abide by this policy.
|
17
|
+
%
|
18
|
+
Domain ID: REG-D3862
|
19
|
+
Domain Name: gencat.cat
|
20
|
+
Domain Name ACE: gencat.cat
|
21
|
+
Domain Language: ca
|
22
|
+
Registrar ID: R-2001 (Nominalia)
|
23
|
+
Created On: 2006-02-14 09:12:37 GMT
|
24
|
+
Last Updated On: 2009-03-31 16:22:42 GMT
|
25
|
+
Expiration Date: 2010-02-14 09:12:37 GMT
|
26
|
+
Status: ok
|
27
|
+
Registrant ID: NOM_P_15605701
|
28
|
+
Registrant Name: Generalitat de Catalunya Departament de la Presidencia
|
29
|
+
Registrant Organization:
|
30
|
+
Registrant Street: Via Laietana, 14
|
31
|
+
Registrant City: Barcelona
|
32
|
+
Registrant State/Province: BARCELONA
|
33
|
+
Registrant Postal Code: 08003
|
34
|
+
Registrant Country: ES
|
35
|
+
Registrant Phone: +34.935676330
|
36
|
+
Registrant Phone Ext:
|
37
|
+
Registrant Fax:
|
38
|
+
Registrant Fax Ext:
|
39
|
+
Registrant Email: jcolomer@gencat.net
|
40
|
+
Admin ID: NOM_8727301
|
41
|
+
Admin Name: Marta Continente Gonzalo
|
42
|
+
Admin Organization: Generalitat de Catalunya Departament de la Presidencia (2)
|
43
|
+
Admin Street: Via Laietana, 14
|
44
|
+
Admin City: Barcelona
|
45
|
+
Admin State/Province: BARCELONA
|
46
|
+
Admin Postal Code: 08003
|
47
|
+
Admin Country: ES
|
48
|
+
Admin Phone: +34.935676330
|
49
|
+
Admin Phone Ext:
|
50
|
+
Admin Fax: +34.935676331
|
51
|
+
Admin Fax Ext:
|
52
|
+
Admin Email: dominisgencat@gencat.net
|
53
|
+
Tech ID: NOM_8727401
|
54
|
+
Tech Name: Jaume Colomer Garcia
|
55
|
+
Tech Organization: Generalitat de Catalunya - Departament de la Presidencia
|
56
|
+
Tech Street: Via Laietana, 14
|
57
|
+
Tech City: Barcelona
|
58
|
+
Tech State/Province: BARCELONA
|
59
|
+
Tech Postal Code: 08003
|
60
|
+
Tech Country: ES
|
61
|
+
Tech Phone: +34.935676330
|
62
|
+
Tech Phone Ext:
|
63
|
+
Tech Fax: +34.935676331
|
64
|
+
Tech Fax Ext:
|
65
|
+
Tech Email: dominisgencat@gencat.net
|
66
|
+
Billing ID: NOM_8727401
|
67
|
+
Billing Name: Jaume Colomer Garcia
|
68
|
+
Billing Organization: Generalitat de Catalunya - Departament de la Presidencia
|
69
|
+
Billing Street: Via Laietana, 14
|
70
|
+
Billing City: Barcelona
|
71
|
+
Billing State/Province: BARCELONA
|
72
|
+
Billing Postal Code: 08003
|
73
|
+
Billing Country: ES
|
74
|
+
Billing Phone: +34.935676330
|
75
|
+
Billing Phone Ext:
|
76
|
+
Billing Fax: +34.935676331
|
77
|
+
Billing Fax Ext:
|
78
|
+
Billing Email: dominisgencat@gencat.net
|
79
|
+
Name Server: dns2.gencat.cat 83.247.132.4
|
80
|
+
Name Server ACE: dns2.gencat.cat 83.247.132.4
|
81
|
+
Name Server: dns.gencat.net
|
82
|
+
Name Server ACE: dns.gencat.net
|
83
|
+
|