On Tue, Apr 14, 2009 at 4:33 PM, Nick Hoyle <[email protected]> wrote: > > I have a loop for parsing each rss feed > > @address.each do |address| > @feed = SimpleRSS.parse open(address.feed) > end > > the problem is my my instance variable @feed just gets overwritten so > basically it displays the last parsed feed > > > 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 --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

