rails--rails/activemodel/README

42 lines
1.2 KiB
Plaintext
Raw Normal View History

2010-01-14 21:19:53 +00:00
= Active Model - defined interfaces for Rails
2010-01-14 21:19:53 +00:00
Prior to Rails 3.0, if a plugin or gem developer wanted to be able to have
an object interact with Action Pack helpers, it was required to either
copy chunks of code from Rails, or monkey patch entire helpers to make them
handle objects that did not look like Active Record. This generated code
duplication and fragile applications that broke on upgrades.
2010-01-14 21:19:53 +00:00
Active Model is a solution for this problem.
2010-01-14 21:19:53 +00:00
Active Model provides a known set of interfaces that your objects can implement
to then present a common interface to the Action Pack helpers.
2010-01-14 21:19:53 +00:00
You can include functionality from the following modules:
2010-01-14 21:29:08 +00:00
* Adding callbacks to your class
2010-01-14 21:19:53 +00:00
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]
2010-01-14 21:29:08 +00:00
* For classes that already look like an Active Record object
class MyClass
include ActiveModel::Conversion
end
...returns the class itself when sent :to_model