method
ascendant_of?
rails latest stable - Class:
ActiveSupport::EventedFileUpdateChecker::PathHelper
ascendant_of?(base, other)private
No documentation available.
# File activesupport/lib/active_support/evented_file_update_checker.rb, line 228
def ascendant_of?(base, other)
base != other && other.ascend do |ascendant|
break true if base == ascendant
end
end