method

respond_to?

respond_to?(method, include_private = false)
public

No documentation available.

# File activerecord/lib/active_record/relation/delegation.rb, line 110
    def respond_to?(method, include_private = false)
      super || @klass.respond_to?(method, include_private) ||
        arel.respond_to?(method, include_private)
    end