The code powering m.abunchtell.com https://m.abunchtell.com
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 

9 rader
231 B

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