aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorMarcel Molina <marcel@vernix.org>2007-12-10 19:45:14 +0000
committerMarcel Molina <marcel@vernix.org>2007-12-10 19:45:14 +0000
commitfade31ad0581361c7b4e49a8b223e4c52094fec0 (patch)
tree95d772bb7a904d4441c62baf838ff1d62f165556 /activerecord
parentdc3e55d11759d2f423f3f76986ee6f8f219d53cc (diff)
downloadrails-fade31ad0581361c7b4e49a8b223e4c52094fec0.tar.gz
rails-fade31ad0581361c7b4e49a8b223e4c52094fec0.tar.bz2
rails-fade31ad0581361c7b4e49a8b223e4c52094fec0.zip
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
Diffstat (limited to 'activerecord')
-rwxr-xr-xactiverecord/README14
1 files changed, 0 insertions, 14 deletions
diff --git a/activerecord/README b/activerecord/README
index 2235c648ff..442530184c 100755
--- a/activerecord/README
+++ b/activerecord/README
@@ -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).