Some missing docs

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@369 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
上级 de5c48c4
......@@ -37,7 +37,7 @@ def self.append_features(base)
# 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 @@ def cache_page(content = nil, options = {})
# "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 @@ def expire_action(options = {})
expire_fragment(url_for(options).split("://").last)
end
class ActionCacheFilter
class ActionCacheFilter #:nodoc:
def initialize(*actions)
@actions = actions
end
......@@ -170,7 +170,7 @@ def after(controller)
#
# 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
......
*SVN*
* Added that Observers can use the observes class method instead of overwriting self.observed_class().
Before:
class ListSweeper < ActiveRecord::Base
def self.observed_class() [ List, Item ]
end
After:
class ListSweeper < ActiveRecord::Base
observes List, Item
end
* Fixed that conditions in has_many and has_and_belongs_to_many should be interpolated just like the finder_sql is
* Fixed Base#update_attribute to be indifferent to whether a string or symbol is used to describe the name
......
* Added that Inflector now accepts Symbols and Classes by calling .to_s on the word supplied
* Added time unit extensions to Fixnum that'll return the period in seconds, like 2.days + 4.hours.
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册