Method: Path#outside?

Defined in:
lib/path.rb

#outside?(ancestor) ⇒ Boolean

The opposite of #inside?.

Returns:

  • (Boolean)


99
100
101
# File 'lib/path.rb', line 99

def outside? ancestor
  !inside?(ancestor)
end