diff options
Diffstat (limited to 'activerecord/lib')
| -rw-r--r-- | activerecord/lib/active_record/relation/delegation.rb | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/activerecord/lib/active_record/relation/delegation.rb b/activerecord/lib/active_record/relation/delegation.rb index 6e8a1fcad4..f7c3b3783f 100644 --- a/activerecord/lib/active_record/relation/delegation.rb +++ b/activerecord/lib/active_record/relation/delegation.rb @@ -132,7 +132,7 @@ module ActiveRecord      private        def respond_to_missing?(method, _) -        super || @klass.respond_to?(method) || arel.respond_to?(method) +        super || @klass.respond_to?(method)        end    end  end | 
