2009-08-09 07:29:34 +00:00
|
|
|
*Edge*
|
|
|
|
|
2010-02-10 22:26:47 +00:00
|
|
|
* ActiveModel::Observer#add_observer!
|
|
|
|
|
|
|
|
It has a custom hook to define after_find that should really be in a
|
|
|
|
ActiveRecord::Observer subclass:
|
|
|
|
|
|
|
|
def add_observer!(klass)
|
|
|
|
klass.add_observer(self)
|
|
|
|
klass.class_eval 'def after_find() end' unless
|
|
|
|
klass.respond_to?(:after_find)
|
|
|
|
end
|
|
|
|
|
2010-01-04 03:02:10 +00:00
|
|
|
* Change the ActiveModel::Base.include_root_in_json default to true for Rails 3 [DHH]
|
|
|
|
|
2009-08-10 02:47:32 +00:00
|
|
|
* Add validates_format_of :without => /regexp/ option. #430 [Elliot Winkler, Peer Allan]
|
|
|
|
|
|
|
|
Example :
|
|
|
|
|
|
|
|
validates_format_of :subdomain, :without => /www|admin|mail/
|
|
|
|
|
2009-08-09 07:29:34 +00:00
|
|
|
* Introduce validates_with to encapsulate attribute validations in a class. #2630 [Jeff Dean]
|
|
|
|
|
|
|
|
* Extracted from Active Record and Active Resource.
|