= private = protected
<=>(other)
Provides for comparing pathnames, case-sensitively.
# File lib/pathname.rb, line 238 def <=>(other) return nil unless Pathname === other @path.tr('/', "\0") <=> other.to_s.tr('/', "\0") end