method

ascendant_of?

ascendant_of?(base, other)
private

No documentation available.

# File activesupport/lib/active_support/evented_file_update_checker.rb, line 187
        def ascendant_of?(base, other)
          base != other && other.ascend do |ascendant|
            break true if base == ascendant
          end
        end