aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/model.rb
Commit message (Collapse)AuthorAgeFilesLines
* Remove IdentityMapCarlos Antonio da Silva2012-03-131-1/+0
|
* Delete some stray linesJon Leighton2011-12-281-1/+0
|
* Support establishing connection on ActiveRecord::Model.Jon Leighton2011-12-281-0/+16
| | | | | This is the 'top level' connection, inherited by any models that include ActiveRecord::Model or inherit from ActiveRecord::Base.
* Support configuration on ActiveRecord::Model.Jon Leighton2011-12-281-42/+47
| | | | | | | | | | | | | | | The problem: We need to be able to specify configuration in a way that can be inherited to models that include ActiveRecord::Model. So it is no longer sufficient to put 'top level' config on ActiveRecord::Base, but we do want configuration specified on ActiveRecord::Base and descendants to continue to work. So we need something like class_attribute that can be defined on a module but that is inherited when ActiveRecord::Model is included. The solution: added ActiveModel::Configuration module which provides a config_attribute macro. It's a bit specific hence I am not putting this in Active Support or making it a 'public API' at present.
* Intercept sends in Model::DeprecationProxyJon Leighton2011-12-241-0/+2
|
* Fix position of load hook so that Base has been defined and included Model ↵Jon Leighton2011-12-241-3/+3
| | | | before it runs
* Add some doc for ActiveRecord::ModelJon Leighton2011-12-241-0/+7
|
* Add deprecation for the change to the active_record load hookJon Leighton2011-12-241-1/+24
|
* Don't include anything else if AR::Model has already been includedJon Leighton2011-12-241-0/+2
|
* Deal with global config better between AR::Base and AR::ModelJon Leighton2011-12-241-1/+3
|
* I herd you like modules.Jon Leighton2011-12-241-1/+10
|
* Start work towards making AR include-able.Jon Leighton2011-12-241-0/+44