Sha256: 00b55daff7c14b2391ba532f3fee824f2693c34d1b12970c42d36403d4a64de5
Contents?: true
Size: 551 Bytes
Versions: 21
Compression:
Stored size: 551 Bytes
Contents
# frozen_string_literal: false # = uri/wss.rb # # Author:: Matt Muller <mamuller@amazon.com> # License:: You can redistribute it and/or modify it under the same term as Ruby. # # See Gem::URI for general documentation # require_relative 'ws' module Gem::URI # The default port for WSS URIs is 443, and the scheme is 'wss:' rather # than 'ws:'. Other than that, WSS URIs are identical to WS URIs; # see Gem::URI::WS. class WSS < WS # A Default port of 443 for Gem::URI::WSS DEFAULT_PORT = 443 end register_scheme 'WSS', WSS end
Version data entries
21 entries across 21 versions & 1 rubygems