1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Remove references to ActsAs* from the README now that it's been pulled out into a plugin. Closes #10451 [sjgman9]

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8371 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Marcel Molina 2007-12-10 19:45:14 +00:00
parent dc3e55d117
commit fade31ad05

View file

@ -65,20 +65,6 @@ A short rundown of the major features:
end
{Learn more}[link:classes/ActiveRecord/Validations.html]
* Acts that can make records work as lists or trees:
class Item < ActiveRecord::Base
belongs_to :list
acts_as_list :scope => :list
end
item.move_higher
item.move_to_bottom
Learn about {acts_as_list}[link:classes/ActiveRecord/Acts/List/ClassMethods.html], {the instance methods acts_as_list provides}[link:classes/ActiveRecord/Acts/List/InstanceMethods.html], and
{acts_as_tree}[link:classes/ActiveRecord/Acts/Tree/ClassMethods.html]
* Callbacks as methods or queues on the entire lifecycle (instantiation, saving, destroying, validating, etc).