Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 7427

Show
Ignore:
Timestamp:
09/09/07 18:03:55 (1 year ago)
Author:
david
Message:

Removed deprecated ActionController::Base#expire_matched_fragments (just call expire_fragment with a regular expression)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/actionpack/lib/action_controller/caching.rb

    r7419 r7427  
    422422      end 
    423423 
    424       # Deprecated -- just call expire_fragment with a regular expression 
    425       def expire_matched_fragments(matcher = /.*/, options = nil) #:nodoc: 
    426         expire_fragment(matcher, options) 
    427       end 
    428       deprecate :expire_matched_fragments => :expire_fragment 
    429  
    430424 
    431425      class UnthreadedMemoryStore #:nodoc: