I'm new to Rails and wanted to try the Ruby Whois gem.
I defined an Active Record record that creates a report. That report would then be filled with data from the whois query (preferably parsed).
When I do the query I get something really weird. I've used ByeBug as a debugger:
$ (byebug) Whois.whois("google.it")
"\n*********************************************************************\n* Please note
that the following result could be a subgroup of *\n* the data contained in the database.
*\n* *\n* Additional
information can be visualized at:
*\n* http://www.nic.it/cgi-bin/Whois/whois.cgi
*\n*********************************************************************\n\nDomain: google.it\nStatus: ok\nCreated: 1999-12-10
00:00:00\nLast Update: 2014-05-07 00:52:45\nExpire Date: 2015-04-21\n
\nRegistrant\n Name: Google Ireland Holdings\n Organization: Google
Ireland Holdings\n ContactID: DUP430692088\n Address: 70 Sir John
Rogersons Quay\n Dublin\n 2\n
IE\n IE\n Created: 2013-04-21 01:05:35\n Last Update:
2013-04-21 01:05:35\n\nAdmin Contact\n Name: Tsao Tu\n Organization: Tu
Tsao\n ContactID: DUP142437129\n Address: 70 Sir John Rogersons
Quay\n Dublin\n 2\n
IE\n IE\n Created: 2013-04-21 01:05:35\n Last Update:
2013-04-21 01:05:35\n\nTechnical Contacts\n Name: Google Ireland Holdings\n
Organization: Google Ireland Holdings\n ContactID: DUP430692088\n
Address: 70 Sir John Rogersons Quay\n
Dublin\n 2\n IE\n IE\n
Created: 2013-04-21 01:05:35\n Last Update: 2013-04-21 01:05:35\n
\nRegistrar\n Organization: MarkMonitor International Limited\n Name:
MARKMONITOR-REG\n Web: https://www.markmonitor.com/\n\nNameservers\n
ns1.google.com\n ns4.google.com\n ns2.google.com\n ns3.google.com\n\n"
$ (byebug) Whois.whois("google.it").parser
#<Whois::Record::Parser:0x000000065bdc30
@record="\n*********************************************************************\n*
Please note that the following result could be a subgroup of *\n* the data contained
in the database.
*\n* *\n* Additional
information can be visualized at: *\n* http://www.nic.it/cgi-bin/Whois
/whois.cgi
*\n*********************************************************************
\n\nDomain: google.it\nStatus: ok\nCreated: 1999-12-10
00:00:00\nLast Update: 2014-05-07 00:52:45\nExpire Date: 2015-04-21\n
\nRegistrant\n Name: Google Ireland Holdings\n Organization: Google
Ireland Holdings\n ContactID: DUP430692088\n Address: 70 Sir John
Rogersons Quay\n Dublin\n 2\n
IE\n IE\n Created: 2013-04-21 01:05:35\n Last Update:
2013-04-21 01:05:35\n\nAdmin Contact\n Name: Tsao Tu\n Organization: Tu
Tsao\n ContactID: DUP142437129\n Address: 70 Sir John Rogersons
Quay\n Dublin\n 2\n
IE\n IE\n Created: 2013-04-21 01:05:35\n Last Update:
2013-04-21 01:05:35\n\nTechnical Contacts\n Name: Google Ireland Holdings\n Organization: Google Ireland Holdings\n ContactID: DUP430692088\n
Address: 70 Sir John Rogersons Quay\n
Dublin\n 2\n IE\n IE\n
Created: 2013-04-21 01:05:35\n Last Update: 2013-04-21 01:05:35\n
\nRegistrar\n Organization: MarkMonitor International Limited\n Name:
MARKMONITOR-REG\n Web: https://www.markmonitor.com/\n\nNameservers\n
ns1.google.com\n ns4.google.com\n ns2.google.com\n ns3.google.com\n\n">
I would like to know what all this is about. It isn't structured anything like it would be in IRB or on a simple console.
And when I try looking at the properties it just tells me to buzz off:
$ (byebug) Whois.whois("google.it").property_supported?(:domain)
NoMethodError Exception: undefined method `property_supported?' for #<Whois::Record:0x000000065aba08>
nil
I'm on a virtual machine (Ubuntu precise64) running Rails 4.0, and Ruby version 2.1.2. The web server is the default Webrick.
All I'd like to do is get the object <Whois::Record>
and extract the values from it, such as domain, domain_id, registrar and so on... any tips ?