absolute?()
Instance Public methods
Predicate method for testing whether a path is absolute.
It returns true
if the pathname begins with a slash.
1 2 3 4 5 6 7 | p = Pathname. new ( '/im/sure' ) p.absolute? #=> true p = Pathname. new ( 'not/so/sure' ) p.absolute? #=> false |
Please login to continue.