getwd -> Pathname
pwd -> Pathname
カレントディレクトリを元に Pathname オブジェクトを生成します。 Pathname.new(Dir.getwd) と同じです。
例 require "pathname" Pathname.getwd #=> #<Pathname:/home/zzak/projects/ruby>
require "pathname" Pathname.getwd #=> #<Pathname:/home/zzak/projects/ruby>
[SEE_ALSO] Dir.getwd