aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/base.rb
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2011-12-16 12:12:05 -0800
committerXavier Noria <fxn@hashref.com>2011-12-16 12:12:05 -0800
commit0065f378262dc3f47880ce6211c7474bc7d11f0b (patch)
tree22ad0e7dbc20ae7062e14e6b6f8fb275ba0f036d /activerecord/lib/active_record/base.rb
parent05316ba1278e7feb8ca16907738e10c2ad1a8076 (diff)
downloadrails-0065f378262dc3f47880ce6211c7474bc7d11f0b.tar.gz
rails-0065f378262dc3f47880ce6211c7474bc7d11f0b.tar.bz2
rails-0065f378262dc3f47880ce6211c7474bc7d11f0b.zip
AS::Concern is not really needed for AR::Explain
Diffstat (limited to 'activerecord/lib/active_record/base.rb')
-rw-r--r--activerecord/lib/active_record/base.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/base.rb b/activerecord/lib/active_record/base.rb
index b479c403a7..432a40ea54 100644
--- a/activerecord/lib/active_record/base.rb
+++ b/activerecord/lib/active_record/base.rb
@@ -699,7 +699,7 @@ module ActiveRecord #:nodoc:
include Associations
include IdentityMap
include ActiveModel::SecurePassword
- include Explain
+ extend Explain
# AutosaveAssociation needs to be included before Transactions, because we want
# #save_with_autosave_associations to be wrapped inside a transaction.