Flowdock
method

respond_to_missing?

Importance_0
v5.1.7 - Show latest stable - 0 notes - Class: DynamicMatchers
respond_to_missing?(name, include_private = false) public

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 4
    def respond_to_missing?(name, include_private = false)
      if self == Base
        super
      else
        match = Method.match(self, name)
        match && match.valid? || super
      end
    end
Register or log in to add new notes.