I have a partial template that calls
feed = Feedzirra::Feed.fetch_and_parse("http://my.rss.feed")
@entries = feed.entries
This partial is called across about 80% of my site’s pages – I’m just wondering about best practices re: where to store variables of this type. Any suggestions appreciated.
i guess use a filter – whichever applicable before or after.