[ruby/uri] URI.extract needs to pass block

If given block to URI.extract, it returns nil.

https://github.com/ruby/uri/commit/984145c407
This commit is contained in:
Hiroshi SHIBATA 2024-07-18 11:58:26 +09:00 коммит произвёл git
Родитель 862041d054
Коммит 2a56c1841d
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -141,8 +141,8 @@ module URI
end
# Compatibility for RFC2396 parser
def extract(str, schemes = nil) # :nodoc:
RFC2396_PARSER.extract(str, schemes)
def extract(str, schemes = nil, &block) # :nodoc:
RFC2396_PARSER.extract(str, schemes, &block)
end
# Compatibility for RFC2396 parser