Skip to content

Instantly share code, notes, and snippets.

@panaggio
Created February 1, 2011 15:44
Show Gist options
  • Save panaggio/806036 to your computer and use it in GitHub Desktop.
Save panaggio/806036 to your computer and use it in GitHub Desktop.
sweep_news_items
def sweep_news_items(question)
User.all.each do |u|
if u.news_items.include? question
expire_fragment("user_news_items_#{u.id}")
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment