Skip to content

Instantly share code, notes, and snippets.

@coderforhire
Created June 4, 2012 15:17
Show Gist options
  • Save coderforhire/2869002 to your computer and use it in GitHub Desktop.
Save coderforhire/2869002 to your computer and use it in GitHub Desktop.
@sports_news_feeds = SportsNewsFeed.where('created_at >= ?', 2.days.ago);
@off_beat_news_feeds = OffBeatNewsFeed.where('created_at >= ?', 2.days.ago);
@entertainment_news_feeds = EntertainmentNewsFeed.where('created_at >= ?', 2.days.ago);
@mashup_news_feeds = @sports_news_feeds + @off_beat_news_feeds + @entertainment_news_feeds
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment