instance method Pathname#absolute?

absolute? -> bool[permalink][rdoc][edit]

self が絶対パス指定であれば真を返します。



require "pathname"

pathname = Pathname("/path/to/example.rb")
pathname.absolute? # => true
pathname = Pathname("../")
pathname.absolute? # => false