class ActiveSupport::EventedFileUpdateChecker::PathHelper

def ascendant_of?(base, other)

def ascendant_of?(base, other)
  base != other && other.ascend do |ascendant|
    break true if base == ascendant
  end
end