Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 8371

Show
Ignore:
Timestamp:
12/10/07 19:45:14 (10 months ago)
Author:
marcel
Message:

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

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/activerecord/README

    r6771 r8371  
    6666 
    6767  {Learn more}[link:classes/ActiveRecord/Validations.html] 
    68  
    69  
    70 * Acts that can make records work as lists or trees: 
    71  
    72     class Item < ActiveRecord::Base 
    73       belongs_to   :list 
    74       acts_as_list :scope => :list 
    75     end 
    76      
    77     item.move_higher 
    78     item.move_to_bottom 
    79  
    80   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 
    81   {acts_as_tree}[link:classes/ActiveRecord/Acts/Tree/ClassMethods.html] 
    8268  
    8369* Callbacks as methods or queues on the entire lifecycle (instantiation, saving, destroying, validating, etc).