absolute? -> bool
[permalink][rdoc][edit]-
self が絶対パス指定であれば真を返します。
require "pathname" pathname = Pathname("/path/to/example.rb") pathname.absolute? # => true pathname = Pathname("../") pathname.absolute? # => false
absolute? -> bool
[permalink][rdoc][edit]self が絶対パス指定であれば真を返します。
require "pathname"
pathname = Pathname("/path/to/example.rb")
pathname.absolute? # => true
pathname = Pathname("../")
pathname.absolute? # => false