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

request_uri

        # URI::HTTP.request_uri

(from ruby core)
### Implementation from HTTP
---
    request_uri()

---

## Description

Returns the full path for an HTTP request, as required by
Net::HTTP::Get.

If the URI contains a query, the full path is URI#path + '?' +
URI#query. Otherwise, the path is simply URI#path.

Example:

    uri = URI::HTTP.build(path: '/foo/bar', query: 'test=true')
    uri.request_uri #  => "/foo/bar?test=true"



      

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.