method

respond_to_missing?

respond_to_missing?(name, _)
private

No documentation available.

# File activerecord/lib/active_record/dynamic_matchers.rb, line 6
      def respond_to_missing?(name, _)
        if self == Base
          super
        else
          match = Method.match(self, name)
          match && match.valid? || super
        end
      end