From: "nobu (Nobuyoshi Nakada)" Date: 2013-03-11T00:33:31+09:00 Subject: [ruby-core:53287] [ruby-trunk - Bug #8034] File.expand_path('something', '~') do not include home path Issue #8034 has been updated by nobu (Nobuyoshi Nakada). Why is File.expand_path('something', '~whoever') ignored? ---------------------------------------- Bug #8034: File.expand_path('something', '~') do not include home path https://bugs.ruby-lang.org/issues/8034#change-37459 Author: rap-kasta (Pavel Manylov) Status: Closed Priority: Normal Assignee: luislavena (Luis Lavena) Category: platform/windows Target version: ruby -v: 1.9.3p362 =begin Next code works correctly only on ruby <= 1.9.3p362. Tested on Windows XP, Windows 2008 with ruby 1.9.3p194 (works properly), ruby 1.9.3p362 (bug), ruby 2.0.0p0 (bug). (({File.expand_path('something', '~') #=> "C:/path/to/current/dir/~/something"})) However, next code works as it should in all tested rubies: (({File.expand_path '~' # => "C:/Documents and Settings/Jack" Dir.home # => "C:/Documents and Settings/Jack"})) =end -- http://bugs.ruby-lang.org/