Sha256: 03465ee4c1263d9109fba86ef1e21c0d21ab85402980ca96185ec608e2fbcf20

Contents?: true

Size: 571 Bytes

Versions: 4

Compression:

Stored size: 571 Bytes

Contents

# frozen_string_literal: false
# = 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$
#
# 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

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
uri-0.10.0.3 lib/uri/https.rb
uri-0.10.0.2 lib/uri/https.rb
uri-0.10.0.1 lib/uri/https.rb
uri-0.10.0 lib/uri/https.rb