Class: Pathname

Inherits:
Object show all
Defined in:
lib/ratch/core_ext/pathname.rb

Instance Method Summary collapse

Instance Method Details

#dir?Boolean

Like directory? but return self if true, otherwise nil.

Returns:



6
7
8
# File 'lib/ratch/core_ext/pathname.rb', line 6

def dir?
  directory? ? self : nil
end