diff options
author | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2013-04-05 04:56:10 -0700 |
---|---|---|
committer | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2013-04-05 04:56:10 -0700 |
commit | ba29581e36c2ed330276d779d2ef0278cb874168 (patch) | |
tree | 8089d185188e642402978e43e2e806236dccf646 /activerecord | |
parent | 155f86675ce6f2995a61eee9e3d814c974d2bec8 (diff) | |
parent | 87543d1cd2428297a546723b0ad3bd6b175da81a (diff) | |
download | rails-ba29581e36c2ed330276d779d2ef0278cb874168.tar.gz rails-ba29581e36c2ed330276d779d2ef0278cb874168.tar.bz2 rails-ba29581e36c2ed330276d779d2ef0278cb874168.zip |
Merge pull request #10102 from xxxcaqui/master
Sort modules in active_record.rb
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/lib/active_record.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/lib/active_record.rb b/activerecord/lib/active_record.rb index f08cca651f..3bfc6772b2 100644 --- a/activerecord/lib/active_record.rb +++ b/activerecord/lib/active_record.rb @@ -35,8 +35,8 @@ module ActiveRecord autoload :Base autoload :Callbacks autoload :Core - autoload :CounterCache autoload :ConnectionHandling + autoload :CounterCache autoload :DynamicMatchers autoload :Explain autoload :Inheritance @@ -69,8 +69,8 @@ module ActiveRecord autoload :Aggregations autoload :Associations - autoload :AttributeMethods autoload :AttributeAssignment + autoload :AttributeMethods autoload :AutosaveAssociation autoload :Relation |