method

method_missing

method_missing(name, ...)
private

No documentation available.

# File activerecord/lib/active_record/dynamic_matchers.rb, line 17
      def method_missing(name, ...)
        match = Method.match(name)

        if match && match.valid?(self, name)
          match.define(self, name)
          send(name, ...)
        else
          super
        end
      end