This is a Ruby tree! It shows every object from the Ruby Programming Language in a tree format.

path

        # URI::FTP.path

(from ruby core)
### Implementation from FTP
---
    path()

---

Returns the path from an FTP URI.

RFC 1738 specifically states that the path for an FTP URI does not
include the / which separates the URI path from the URI host. Example:

`ftp://ftp.example.com/pub/ruby`

The above URI indicates that the client should connect to
ftp.example.com then cd to pub/ruby from the initial login directory.

If you want to cd to an absolute directory, you must include an escaped
/ (%2F) in the path. Example:

`ftp://ftp.example.com/%2Fpub/ruby`

This method will then return "/pub/ruby".



      

This is MURDOC! A Ruby documentation browser inspired by Smalltalk-80. It allows you to learn about Ruby by browsing through its class hierarchies, and see any of its methods.