fixed column alignment

This commit is contained in:
Mikel Lindsaar 2010-01-16 23:09:32 +11:00
parent 4a2d2ef91a
commit e1c15d9fa1
1 changed files with 16 additions and 14 deletions

View File

@ -12,21 +12,21 @@ Active Model provides a known set of interfaces that your objects can implement
to then present a common interface to the Action Pack helpers. You can include
functionality from the following modules:
* Adding callbacks to your class
* Adding callbacks to your objects
class MyClass
extend ActiveModel::Callbacks
define_model_callbacks :create
def create
_run_create_callbacks do
# Your create action methods here
end
end
end
...gives you before_create, around_create and after_create class methods that
wrap your create method.
class MyClass
extend ActiveModel::Callbacks
define_model_callbacks :create
def create
_run_create_callbacks do
# Your create action methods here
end
end
end
...gives you before_create, around_create and after_create class methods that
wrap your create method.
{Learn more}[link:classes/ActiveModel/CallBacks.html]
@ -38,6 +38,8 @@ functionality from the following modules:
...returns the class itself when sent :to_model
{Learn more}[link:classes/ActiveModel/Conversion.html]
* Tracking changes in your object
Provides all the value tracking features implemented by ActiveRecord...