aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/relation.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/relation.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/relation.rb')
-rw-r--r--activerecord/lib/active_record/relation.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/relation.rb b/activerecord/lib/active_record/relation.rb
index ab2882516e..258c1959a0 100644
--- a/activerecord/lib/active_record/relation.rb
+++ b/activerecord/lib/active_record/relation.rb
@@ -9,7 +9,7 @@ module ActiveRecord
MULTI_VALUE_METHODS = [:select, :group, :order, :joins, :where, :having, :bind]
SINGLE_VALUE_METHODS = [:limit, :offset, :lock, :readonly, :from, :reorder, :reverse_order, :uniq]
- include FinderMethods, Calculations, SpawnMethods, QueryMethods, Batches, Explain::ClassMethods, Delegation
+ include FinderMethods, Calculations, SpawnMethods, QueryMethods, Batches, Explain, Delegation
attr_reader :table, :klass, :loaded
attr_accessor :extensions, :default_scoped