Skip to content

Instantly share code, notes, and snippets.

@ritxi
Created July 28, 2011 18:52
Show Gist options
  • Save ritxi/1112247 to your computer and use it in GitHub Desktop.
Save ritxi/1112247 to your computer and use it in GitHub Desktop.
Hpricot example
require 'hpricot'
require 'open-uri'
doc = open("http://qwantz.com/") { |f| Hpricot(f) }
doc.search("//body").count
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment