On Apr 12, 2011, at 3:30 PM, Sam wrote: > is there a simple way to treat an rss feed as a hobo model, i would > like to use each rss item inside a card tag. Not sure where to start > with this, could anyone give me a hint? thank you.
You'll probably want to start with an RSS/Atom parser gem, as it makes it much less painful than pulling apart incoming markup manually. I've had good results with Feedme (https://github.com/jdidion/feedme ) on a project I've been working on recently. From there, you'll probably want to take the data and turn it into Activerecord models, both to make it easier for Rails and to avoid parsing the RSS over and over. --Matt Jones -- You received this message because you are subscribed to the Google Groups "Hobo Users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/hobousers?hl=en.
