From: "h.shirosaki (Hiroshi Shirosaki)" Date: 2013-03-11T06:01:47+09:00 Subject: [ruby-core:53297] [ruby-trunk - Bug #8034] File.expand_path('something', '~') do not include home path Issue #8034 has been updated by h.shirosaki (Hiroshi Shirosaki). Assignee changed from h.shirosaki (Hiroshi Shirosaki) to luislavena (Luis Lavena) Luis, thank you for your work. `xfree(wpath);` would be needed before rb_raise(rb_eArgError, "can't find user %s"... Indeed refactoring is better if possible. ---------------------------------------- Bug #8034: File.expand_path('something', '~') do not include home path https://bugs.ruby-lang.org/issues/8034#change-37475 Author: rap-kasta (Pavel Manylov) Status: Assigned 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/