Something along the lines of:

def domain_exists?(domain)
  # perform check
  # return true|false
end

puts "valid!" if domain_exists?("example.com")
link|improve this question

feedback

4 Answers

up vote 1 down vote accepted

If you want to check whether a domain is registered or not, then you need to perform a Whois query. http://www.ruby-whois.org/

link|improve this answer
Very nice gem, thank you, @Simone Carletti – macek Apr 23 '10 at 16:46
feedback

With ruby-whois is pretty easy:

Install gem and require.

a = Whois.whois("google.com")

a.available? => false

There is also a CLI bundled if you install it via ruby gems: ruby-whois

web page at: ruby-whois.org

link|improve this answer
Simon Carletti, the first in replying is your man for this task. – cobi_z Apr 23 '10 at 11:50
feedback
require 'socket'

def domain_exists?(domain)
  begin
    Socket.gethostbyname(domain)
  rescue SocketError
    return false
  end

  true
end
link|improve this answer
feedback

You could shell out to nslookup like this:

`nslookup #{domain}`

and parse the results as text with regexes etc.

Or you can use the Socket class, specifically Socket.getaddrinfo. See previous StackOverflow answer on this very question.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.