Skip to content

Instantly share code, notes, and snippets.

@cowboycoded
Created April 12, 2011 02:26
Show Gist options
  • Save cowboycoded/914802 to your computer and use it in GitHub Desktop.
Save cowboycoded/914802 to your computer and use it in GitHub Desktop.
class WidgetsController < ApplicationController
#bad formatting here b/c of wordpress (remove space before 'only' if you copy this next line of code)
cache_sweeper :widget_sweeper, : only => [:create,:update,:destroy]
caches_action :show, :if => Proc.new { |x| x.cacheable? }
def show
#...
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment