Skip to content

Instantly share code, notes, and snippets.

@ericcf
Created June 22, 2011 14:53
Show Gist options
  • Save ericcf/1040261 to your computer and use it in GitHub Desktop.
Save ericcf/1040261 to your computer and use it in GitHub Desktop.
class IngredientsSweeper < ActionController::Caching::Sweeper
observe Ingredient
def after_save(record)
expire_action :controller => "ingredients",
:action => "index",
:format => :json
expire_action :controller => "ingredients",
:action => "show",
:id => record.id,
:format => :json
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment