eb51e43fb4
* Use Regex#match? * Replace =~ too * Avoid to call match? from Nil * Keep value of Regexp.last_match
8 line
241 B
Ruby
8 line
241 B
Ruby
require 'open-uri'
|
|
|
|
module OpenURI
|
|
def self.redirectable?(uri1, uri2) # :nodoc:
|
|
uri1.scheme.casecmp(uri2.scheme).zero? ||
|
|
(/\A(?:http|https|ftp)\z/i.match?(uri1.scheme) && /\A(?:http|https|ftp)\z/i.match?(uri2.scheme))
|
|
end
|
|
end
|