tags:

views:

216

answers:

1

I'm trying to do a google search using Ruby, and print the 1st 3 results.

Could anyone point me to a sample code? I'm unable to find it.

A: 

The gem googleajax is there for that:

require 'googleajax'
GoogleAjax.referer = "your_domain_name_here.com"
GoogleAjax::Search.web("Hello world")[:results][0...3]
Marc-André Lafortune