Method: Path#relative?

Defined in:
lib/path/predicates.rb

#relative?Boolean

Whether a path is relative.

Returns:

  • (Boolean)


10
11
12
# File 'lib/path/predicates.rb', line 10

def relative?
  not absolute?
end