method

respond_to_missing?

respond_to_missing?(name, include_private = false)
public

No documentation available.

# 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