Project

General

Profile

Backport #2961

Updated by jeremyevans0 (Jeremy Evans) almost 5 years ago

=begin 
  
  Comparing same folders in FS, defined a bit different way produces false 
 
  Example: (cwd is c:\alpha) 
 
  Pathname.new('c:\alpha').realpath 
  => #<Pathname:c:\alpha> 
  Pathname.new('./').realpath 
  => #<Pathname:C:/alpha> 
  Pathname.new('c:\alpha').realpath==Pathname.new('./').realpath 
  => false 
 
 =end 
 

Back