Changeset 3509
- Timestamp:
- 02/01/06 03:58:37 (3 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/actionpack/lib/action_controller/caching.rb
r3508 r3509 523 523 524 524 # ActiveRecord::Observer will mark this class as reloadable even though it should be 525 def self.included_modules (include_super = true)525 def self.included_modules 526 526 super() - [ Reloadable ] 527 527 end trunk/actionpack/lib/action_controller/session/active_record_store.rb
r3508 r3509 67 67 class << self 68 68 # Don't try to reload ARStore::Session in dev mode. 69 def included_modules (include_super = true)69 def included_modules 70 70 super() - [ Reloadable ] 71 71 end