/opt/cpanel/ea-ruby27/root/usr/share/ruby/ruby-2.7.8/uri
NameSizeModeActions
common.rb200900644editdlrm
file.rb20640644editdlrm
ftp.rb72080644editdlrm
generic.rb371300644editdlrm
http.rb24090644editdlrm
https.rb5710644editdlrm
ldap.rb59330644editdlrm
ldaps.rb5060644editdlrm
mailto.rb80230644editdlrm
rfc2396_parser.rb178210644editdlrm
rfc3986_parser.rb63940644editdlrm
version.rb1520644editdlrm
Edit: /opt/cpanel/ea-ruby27/root/usr/share/ruby/ruby-2.7.8/uri/https.rb (571B)
# frozen_string_literal: false # = uri/https.rb # # Author:: Akira Yamada # License:: You can redistribute it and/or modify it under the same term as Ruby. # Revision:: $Id$ # # See URI for general documentation # require_relative '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 # A Default port of 443 for URI::HTTPS DEFAULT_PORT = 443 end @@schemes['HTTPS'] = HTTPS end