Skip to content

Instantly share code, notes, and snippets.

@rd13
Created March 31, 2013 16:43
Show Gist options
  • Save rd13/5281231 to your computer and use it in GitHub Desktop.
Save rd13/5281231 to your computer and use it in GitHub Desktop.
Nokogiri / Rails - Parse currency conversion rates
doc = Nokogiri::HTML(open("http://www.ecb.int/stats/eurofxref/eurofxref-daily.xml"))
doc.remove_namespaces!
doc.xpath("//Cube/Cube/Cube").each do |node|
puts node.attr("rate")
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment