I'm using Nokogiri to parse XML.
doc = Nokogiri::XML("http://www.enhancetv.com.au/tvguide/rss/melbournerss.php")
I wasn't sure how to actually retrieve node values correctly.
I'm after the title, link, and description nodes in particular that sit under the item parent nodes.
<item>
<title>Toasted TV - TEN - 07:00:00 - 21/12/2011</title>
<link>http://www.enhancetv.com.au/tvguide/</link>
<description>Join the team for the latest in gaming, sport, gadgets, pop culture, movies, music and other seriously fun stuff! Featuring a variety of your favourite cartoons.</description>
</item>
What I'd like to do is title.split("-") in such a way that I can convert the date and time strings into a valid DateTime object to use later on down the track.