The code powering m.abunchtell.com https://m.abunchtell.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

9 lines
240 B

  1. require 'open-uri'
  2. module OpenURI
  3. def OpenURI.redirectable?(uri1, uri2) # :nodoc:
  4. uri1.scheme.downcase == uri2.scheme.downcase ||
  5. (/\A(?:http|https|ftp)\z/i =~ uri1.scheme && /\A(?:http|https|ftp)\z/i =~ uri2.scheme)
  6. end
  7. end