aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-01-10 19:18:37 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-01-10 19:18:37 +0000
commit7ed4b745fcd2c57747ed21ffa3a7a0cd92f621af (patch)
treebcee6d4e6ec3bd392004f979be6af4e66fbde79e /actionpack
parentde5c48c4e36ef477b641bf11d0f883f074164415 (diff)
downloadrails-7ed4b745fcd2c57747ed21ffa3a7a0cd92f621af.tar.gz
rails-7ed4b745fcd2c57747ed21ffa3a7a0cd92f621af.tar.bz2
rails-7ed4b745fcd2c57747ed21ffa3a7a0cd92f621af.zip
Some missing docs
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@369 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/lib/action_controller/caching.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/actionpack/lib/action_controller/caching.rb b/actionpack/lib/action_controller/caching.rb
index cdfcafa3d7..87d0558284 100644
--- a/actionpack/lib/action_controller/caching.rb
+++ b/actionpack/lib/action_controller/caching.rb
@@ -37,7 +37,7 @@ module ActionController #:nodoc:
# Additionally, you can expire caches using Sweepers that act on changes in the model to determine when a cache is supposed to be
# expired.
module Pages
- def self.append_features(base)
+ def self.append_features(base) #:nodoc:
super
base.extend(ClassMethods)
base.class_eval do
@@ -107,7 +107,7 @@ module ActionController #:nodoc:
# "david.somewhere.com/lists/show/1". This allows the cacher to differentiate between "david.somewhere.com/lists/" and
# "jamis.somewhere.com/lists/" -- which is a helpful way of assisting the subdomain-as-account-key pattern.
module Actions
- def self.append_features(base)
+ def self.append_features(base) #:nodoc:
super
base.extend(ClassMethods)
base.send(:attr_accessor, :rendered_action_cache)
@@ -123,7 +123,7 @@ module ActionController #:nodoc:
expire_fragment(url_for(options).split("://").last)
end
- class ActionCacheFilter
+ class ActionCacheFilter #:nodoc:
def initialize(*actions)
@actions = actions
end
@@ -170,7 +170,7 @@ module ActionController #:nodoc:
#
# TO BE WRITTEN...
module Fragments
- def self.append_features(base)
+ def self.append_features(base) #:nodoc:
super
base.class_eval do
@@cache_store = MemoryStore.new