1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

[ruby/uri] Simplify construction of URI instances using parser interface.

c145017dd7
This commit is contained in:
Samuel Williams 2019-12-28 11:36:41 +13:00 committed by Hiroshi SHIBATA
parent e460c2d033
commit 844ff7ea45
No known key found for this signature in database
GPG key ID: F9CF13417264FAC2
3 changed files with 16 additions and 25 deletions

View file

@ -208,21 +208,9 @@ module URI
# #=> #<URI::LDAP ldap://ldap.example.com/dc=example?user=john>
#
def parse(uri)
scheme, userinfo, host, port,
registry, path, opaque, query, fragment = self.split(uri)
if scheme && URI.scheme_list.include?(scheme.upcase)
URI.scheme_list[scheme.upcase].new(scheme, userinfo, host, port,
registry, path, opaque, query,
fragment, self)
else
Generic.new(scheme, userinfo, host, port,
registry, path, opaque, query,
fragment, self)
end
URI.for(*self.split(uri), self)
end
#
# == Args
#