method
ascendant_of?
v5.1.7 -
Show 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 196
def ascendant_of?(base, other)
base != other && other.ascend do |ascendant|
break true if base == ascendant
end
end