uri.rb 80 B

123456
  1. # Monkey-patch HTTP::URI
  2. class HTTP::URI
  3. def port
  4. 443 if https?
  5. end
  6. end