Skip to content

Instantly share code, notes, and snippets.

@nigelr
Created January 14, 2013 00:14
Show Gist options
  • Save nigelr/4526961 to your computer and use it in GitHub Desktop.
Save nigelr/4526961 to your computer and use it in GitHub Desktop.
Cheat
it "meme" do
url = "http://www2b.abc.net.au/votecentral/Client/PlaceVote.aspx?E=96&IX=0&IG=2"
doc = Nokogiri::HTML(open(url))
list = doc.at("div .IndexPageContent")
list = list.at("p")
list.css("span .artist").each do |item|
puts "#{item.text} - #{ item.next_element.next_element.text}"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment