aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record.rb
diff options
context:
space:
mode:
authorSean Griffin <sean@thoughtbot.com>2014-06-19 11:13:19 -0600
committerSean Griffin <sean@thoughtbot.com>2014-06-19 13:12:52 -0600
commit099af48d31bb2b5fc8e3fff39b825efff7964d55 (patch)
treea125056346c5ffe3bd348349dadb02249c00c81a /activerecord/lib/active_record.rb
parentdccf6da66bf4a63971e1f12b98cb1bb1fe5a9015 (diff)
downloadrails-099af48d31bb2b5fc8e3fff39b825efff7964d55.tar.gz
rails-099af48d31bb2b5fc8e3fff39b825efff7964d55.tar.bz2
rails-099af48d31bb2b5fc8e3fff39b825efff7964d55.zip
Introduce an object to aid in creation and management of `@attributes`
Mostly delegation to start, but we can start moving a lot of behavior in bulk to this object.
Diffstat (limited to 'activerecord/lib/active_record.rb')
-rw-r--r--activerecord/lib/active_record.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/activerecord/lib/active_record.rb b/activerecord/lib/active_record.rb
index 53fa132219..ab85414277 100644
--- a/activerecord/lib/active_record.rb
+++ b/activerecord/lib/active_record.rb
@@ -32,6 +32,7 @@ module ActiveRecord
extend ActiveSupport::Autoload
autoload :Attribute
+ autoload :AttributeSet
autoload :Base
autoload :Callbacks
autoload :Core