Flowdock
method

respond_to_missing?

Importance_0
v5.2.3 - Show latest stable - 0 notes - Class: DynamicMatchers
respond_to_missing?(name, _) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# 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
Register or log in to add new notes.