Skip to content

Instantly share code, notes, and snippets.

@peerau
Created August 1, 2012 15:03
Show Gist options
  • Save peerau/72e4aa7238343fe6c471 to your computer and use it in GitHub Desktop.
Save peerau/72e4aa7238343fe6c471 to your computer and use it in GitHub Desktop.
require 'nokogiri'
require 'open-uri'
@url = "http://www.london2012.com/medals/medal-count/index.html"
uri = Nokogiri::HTML(open(@url)).at_css("table.overall_medals")
uri.first.text
uri.children.next.text
uri.children.next
uri.children.first.text
uri.children.next_element
uri.children.next_element.text
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment