From: "naruse (Yui NARUSE)" Date: 2012-11-09T15:40:40+09:00 Subject: [ruby-core:49135] [ruby-trunk - Bug #7310] URI::FTP API inconsistency Issue #7310 has been updated by naruse (Yui NARUSE). knu (Akinori MUSHA) wrote: > Please read the RFCs, especially RFC 1738 and see how the path > part in FTP URI is defined. RFC 1738 is obsoleted by RFC 2396 and no RFCs define FTP URI scheme now. A latest FTP URI scheme draft defines ftp-path, but there is no path http://tools.ietf.org/html/draft-yevstifeyev-ftp-uri-scheme-08 ---------------------------------------- Bug #7310: URI::FTP API inconsistency https://bugs.ruby-lang.org/issues/7310#change-32678 Author: t3hk0d3 (Igor Yamolov) Status: Rejected 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/