method

method_missing

rails latest stable - Class: ActiveSupport::ArrayInquirer
method_missing(name, *args)
private

No documentation available.

# File activesupport/lib/active_support/array_inquirer.rb, line 42
      def method_missing(name, *args)
        if name.end_with?("?")
          any?(name[0..-2])
        else
          super
        end
      end