views:

26

answers:

1

Hi I use this parser for my project: http://simple-rss.rubyforge.org/

It works nice but I have nodes like this:

<dc:creator>viroos</dc:creator>

I have no idea how to get nodes like this.

+1  A: 

I suggest using nokogiri instead. It should give you the flexibility you want.

Alternatively based on a quick skim of the simple-rss code, the node might be available as dc_creator .

segy