Module: Kernel

Defined in:
lib/uri/common.rb

Overview

module URI

Class Method Summary collapse

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>


842
843
844
845
846
847
848
849
850
851
# File 'lib/uri/common.rb', line 842

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