diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2006-11-02 19:29:40 +0000 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2006-11-02 19:29:40 +0000 |
commit | a8bb66ace849ecd2516a4ff3488eb339093b8774 (patch) | |
tree | 329c6b4ac539dba687a163e3f6e12a90a5b74774 /actionpack/lib | |
parent | 99b607d7171c246273abd7045428e37ba23ce350 (diff) | |
download | rails-a8bb66ace849ecd2516a4ff3488eb339093b8774.tar.gz rails-a8bb66ace849ecd2516a4ff3488eb339093b8774.tar.bz2 rails-a8bb66ace849ecd2516a4ff3488eb339093b8774.zip |
Deprecate expire_matched_fragments. Use expire_fragment instead. Closes #6535.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5412 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_controller/caching.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/actionpack/lib/action_controller/caching.rb b/actionpack/lib/action_controller/caching.rb index 177f72d136..bf1a94591e 100644 --- a/actionpack/lib/action_controller/caching.rb +++ b/actionpack/lib/action_controller/caching.rb @@ -389,6 +389,7 @@ module ActionController #:nodoc: def expire_matched_fragments(matcher = /.*/, options = nil) #:nodoc: expire_fragment(matcher, options) end + deprecate :expire_matched_fragments => :expire_fragment class UnthreadedMemoryStore #:nodoc: |