From: "t3hk0d3 (Igor Yamolov)" Date: 2012-11-08T20:18:53+09:00 Subject: [ruby-core:49095] [ruby-trunk - Bug #7310] URI::FTP API inconsistency Issue #7310 has been updated by t3hk0d3 (Igor Yamolov). In other words URI::HTTP returning/expecting absolute path, while URI::FTP returning/expecting relative path. ---------------------------------------- Bug #7310: URI::FTP API inconsistency https://bugs.ruby-lang.org/issues/7310#change-32627 Author: t3hk0d3 (Igor Yamolov) Status: Open Priority: Low Assignee: Category: lib Target version: next minor ruby -v: 1.9.3p194 1.9.3p194 :012 > test = URI.parse("http://test/") => # 1.9.3p194 :013 > test.path => "/" 1.9.3p194 :014 > test = URI.parse("ftp://test/") => # 1.9.3p194 :015 > test.path => "" -- http://bugs.ruby-lang.org/