このマニュアルは既にメンテナンスが終了したバージョンの Ruby を対象としています。 最新版のマニュアルへ

Ruby 2.4.0 リファレンスマニュアル

instance method Pathname#absolute?

absolute? -> bool[permalink][rdoc]

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

require "pathname"

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