Skip to content

Instantly share code, notes, and snippets.

@josueochoa
Created September 13, 2013 17:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save josueochoa/6553649 to your computer and use it in GitHub Desktop.
Save josueochoa/6553649 to your computer and use it in GitHub Desktop.
Nokogiri Test
require 'rubygems'
require 'nokogiri'
require 'open-uri'
url = "http://web.tursos.com"
doc = Nokogiri::HTML(open(url))
doc.css("h1 a").each do |item|
puts item.text
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment