From 49401f880c716aceb0f23051c10bcbd59ed89574 Mon Sep 17 00:00:00 2001 From: Sam Stephenson Date: Wed, 1 Feb 2006 20:25:27 +0000 Subject: Subclasses of ActionController::Caching::Sweeper should be Reloadable git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3517 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/lib/action_controller/caching.rb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'actionpack/lib') diff --git a/actionpack/lib/action_controller/caching.rb b/actionpack/lib/action_controller/caching.rb index 3f54e5d383..df25fed3b2 100644 --- a/actionpack/lib/action_controller/caching.rb +++ b/actionpack/lib/action_controller/caching.rb @@ -521,9 +521,10 @@ module ActionController #:nodoc: class Sweeper < ActiveRecord::Observer #:nodoc: attr_accessor :controller - # ActiveRecord::Observer will mark this class as reloadable even though it should be + # ActiveRecord::Observer will mark this class as reloadable even though it should not be. + # However, subclasses of ActionController::Caching::Sweeper should be Reloadable def self.included_modules - super() - [ Reloadable ] + self == Sweeper ? super() - [ Reloadable ] : super() end def before(controller) -- cgit v1.2.3