Skip to content

Instantly share code, notes, and snippets.

@abernier
Created March 3, 2010 19:30
Show Gist options
  • Save abernier/320917 to your computer and use it in GitHub Desktop.
Save abernier/320917 to your computer and use it in GitHub Desktop.
require 'rubygems'
require 'nokogiri'
require 'open-uri'
Nokogiri::HTML(open('http://www.google.com/search?q=tenderlove')).xpath('//h3/a[@class="l"]').each do |link|
puts link.content
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment