root? -> bool
self がルートディレクトリであれば真を返します。判断は文字列操作によって行われ、ファイルシステムはアクセスされません。
例 require 'pathname' Pathname('/').root? # => true Pathname('/im/sure').root? # => false
require 'pathname' Pathname('/').root? # => true Pathname('/im/sure').root? # => false