diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2017-06-01 01:12:07 +0900 |
---|---|---|
committer | Ryuta Kamizono <kamipo@gmail.com> | 2017-06-01 01:52:20 +0900 |
commit | 262ef5df706dcfaa8770108acbc178db32e3ae88 (patch) | |
tree | f975cad2fdddfe5d33e286facf2e6430375ec93a /activerecord/lib/active_record | |
parent | 7c800fe5e338540ef195f071a7f3604ed4197f3f (diff) | |
download | rails-262ef5df706dcfaa8770108acbc178db32e3ae88.tar.gz rails-262ef5df706dcfaa8770108acbc178db32e3ae88.tar.bz2 rails-262ef5df706dcfaa8770108acbc178db32e3ae88.zip |
Add missing `delegate :extending, to: :all`
Diffstat (limited to 'activerecord/lib/active_record')
-rw-r--r-- | activerecord/lib/active_record/querying.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/querying.rb b/activerecord/lib/active_record/querying.rb index c4a22398f0..b16e178358 100644 --- a/activerecord/lib/active_record/querying.rb +++ b/activerecord/lib/active_record/querying.rb @@ -8,7 +8,7 @@ module ActiveRecord delegate :destroy, :destroy_all, :delete, :delete_all, :update, :update_all, to: :all delegate :find_each, :find_in_batches, :in_batches, to: :all delegate :select, :group, :order, :except, :reorder, :limit, :offset, :joins, :left_joins, :left_outer_joins, :or, - :where, :rewhere, :preload, :eager_load, :includes, :from, :lock, :readonly, + :where, :rewhere, :preload, :eager_load, :includes, :from, :lock, :readonly, :extending, :having, :create_with, :distinct, :references, :none, :unscope, :merge, to: :all delegate :count, :average, :minimum, :maximum, :sum, :calculate, to: :all delegate :pluck, :ids, to: :all |