Module: Kernel
- Defined in:
- lib/uri/common.rb
Overview
module URI
Class Method Summary collapse
-
.URI(uri) ⇒ Object
Returns a URI object derived from the given
uri
, which may be a URI string or an existing URI object:.
Class Method Details
.URI(uri) ⇒ Object
Returns a URI object derived from the given uri
, which may be a URI string or an existing URI object:
# Returns a new URI.
uri = URI('http://github.com/ruby/ruby')
# => #<URI::HTTP http://github.com/ruby/ruby>
# Returns the given URI.
URI(uri)
# => #<URI::HTTP http://github.com/ruby/ruby>
869 870 871 872 873 874 875 876 877 878 |
# File 'lib/uri/common.rb', line 869 def URI(uri) if uri.is_a?(URI::Generic) uri elsif uri = String.try_convert(uri) URI.parse(uri) else raise ArgumentError, "bad argument (expected URI object or URI string)" end end |