method

ascendant_of?

Importance_0
v5.0.0.1 - Show latest stable - 0 notes - Class: PathHelper
ascendant_of?(base, other) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# 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
Register or log in to add new notes.