Synonym for Pathname.new
# File lib/pathname2.rb, line 1121 def Pathname(path) Pathname.new(path) end
Usage: pn{ path }
A shortcut for Pathname.new
# File lib/pathname2.rb, line 1109 def pn instance_eval{ Pathname.new(yield) } end