ruby / uri

URI is a module providing classes to handle Uniform Resource Identifiers
https://ruby.github.io/uri/
Other
85 stars 46 forks source link

Use DEFAULT_PARSER at split, parse, join #111

Closed hsbt closed 3 months ago

hsbt commented 3 months ago

URI.split, URI.parse and URI.join always uses RFC3986_PARSER from https://github.com/ruby/uri/commit/d8c414e99dda6cbb0bf91b9ad5f6a95321e00435

The current HEAD uses RFC3986_PARSER as DEFAULT_PARSER. We should allow to switch Parser behavior with user configuration.