aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/http/rack_cache.rb
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2010-10-26 14:05:06 -0200
committerJosé Valim <jose.valim@gmail.com>2010-10-26 14:05:06 -0200
commit69a1a0adb5d4e615f08e8b1d23d9a6b0e2dd6070 (patch)
treec7143d2a317cfa5e4974d96429e0e7986d86f741 /actionpack/lib/action_dispatch/http/rack_cache.rb
parent4ba24ba043a00e61e97369e6664d5c0fcdbc0fe8 (diff)
downloadrails-69a1a0adb5d4e615f08e8b1d23d9a6b0e2dd6070.tar.gz
rails-69a1a0adb5d4e615f08e8b1d23d9a6b0e2dd6070.tar.bz2
rails-69a1a0adb5d4e615f08e8b1d23d9a6b0e2dd6070.zip
Remove rack-cache-purge.
Diffstat (limited to 'actionpack/lib/action_dispatch/http/rack_cache.rb')
-rw-r--r--actionpack/lib/action_dispatch/http/rack_cache.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/actionpack/lib/action_dispatch/http/rack_cache.rb b/actionpack/lib/action_dispatch/http/rack_cache.rb
index e5914abc81..b5c1435903 100644
--- a/actionpack/lib/action_dispatch/http/rack_cache.rb
+++ b/actionpack/lib/action_dispatch/http/rack_cache.rb
@@ -21,11 +21,6 @@ module ActionDispatch
@store.write(key, value)
end
- def purge(key)
- @store.delete(key)
- nil
- end
-
::Rack::Cache::MetaStore::RAILS = self
end
@@ -58,10 +53,6 @@ module ActionDispatch
[key, size]
end
- def purge(key)
- @store.delete(key)
- end
-
::Rack::Cache::EntityStore::RAILS = self
end
end