зеркало из https://github.com/github/ruby.git
[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:
Родитель
862041d054
Коммит
2a56c1841d
|
@ -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
|
||||
|
|
Загрузка…
Ссылка в новой задаче