Andrew Timberlake wrote: > On Tue, Apr 14, 2009 at 4:33 PM, Nick Hoyle > <[email protected]> wrote: >> >> how can i store each feed without it been overwrited so i can display it >> in my view? >> >> regards >> >> nick > > @feeds = [] > @address.each do |address| > @feeds << SimpleRSS.parse open(address.feed) > end > > In your view > @feeds.each do |fee| > ... > end > > Andrew Timberlake > http://ramblingsonrails.com > http://www.linkedin.com/in/andrewtimberlake > > "I have never let my schooling interfere with my education" - Mark Twain
Hi thanks for quick reply, i tried using << symbol before and it just gave me a syntax error indicating theres somethings wrong around parse. open -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" 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/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---

