NoMethodError

@newsfeeds is a array (as the error message tells you). You're rendering a collection, with a partial called 'feed' which means that the element of the array being considered is materialised as a local variable called feed. assuming fed is the method you want to call you need feed.fed, not @newsfeeds.fed

Fred