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

normalize

        # URI::Generic.normalize

(from ruby core)
### Implementation from Generic
---
    normalize()

---

Returns normalized URI.

    require 'uri'

    URI("HTTP://my.EXAMPLE.com").normalize
    #=> #<URI::HTTP http://my.example.com/>

Normalization here means:

*   scheme and host are converted to lowercase,
*   an empty path component is set to "/".




      

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.