Sha256: cc6f2df8af26425f87f8fe34f67df35a16f351b2fff6e1b59fd398379eb659cd
Contents?: true
Size: 498 Bytes
Versions: 49
Compression:
Stored size: 498 Bytes
Contents
# # = uri/https.rb # # Author:: Akira Yamada <akira@ruby-lang.org> # License:: You can redistribute it and/or modify it under the same term as Ruby. # Revision:: $Id: https.rb 25189 2009-10-02 12:04:37Z akr $ # require 'uri/http' module URI # The default port for HTTPS URIs is 443, and the scheme is 'https:' rather # than 'http:'. Other than that, HTTPS URIs are identical to HTTP URIs; # see URI::HTTP. class HTTPS < HTTP DEFAULT_PORT = 443 end @@schemes['HTTPS'] = HTTPS end
Version data entries
49 entries across 49 versions & 2 rubygems