mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
93c1f11c0a
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. |
||
---|---|---|
.. | ||
mass_assignment_security | ||
serializers | ||
validations | ||
attribute_methods_test.rb | ||
callbacks_test.rb | ||
configuration_test.rb | ||
conversion_test.rb | ||
dirty_test.rb | ||
errors_test.rb | ||
helper.rb | ||
lint_test.rb | ||
mass_assignment_security_test.rb | ||
naming_test.rb | ||
observer_array_test.rb | ||
observing_test.rb | ||
secure_password_test.rb | ||
serialization_test.rb | ||
translation_test.rb | ||
validations_test.rb |