# 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 Bundler::URI for general documentation
#
require_relative 'ws'
module Bundler::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 Bundler::URI::WS.
class WSS < WS
# A Default port of 443 for Bundler::URI::WSS
DEFAULT_PORT = 443
end
register_scheme 'WSS', WSS
end
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| common.rb | File | 20.35 KB | 0644 |
|
| file.rb | File | 2.41 KB | 0644 |
|
| ftp.rb | File | 7.27 KB | 0644 |
|
| generic.rb | File | 38.53 KB | 0644 |
|
| http.rb | File | 3.81 KB | 0644 |
|
| https.rb | File | 594 B | 0644 |
|
| ldap.rb | File | 5.91 KB | 0644 |
|
| ldaps.rb | File | 547 B | 0644 |
|
| mailto.rb | File | 8.04 KB | 0644 |
|
| rfc2396_parser.rb | File | 17.42 KB | 0644 |
|
| rfc3986_parser.rb | File | 5.95 KB | 0644 |
|
| version.rb | File | 159 B | 0644 |
|
| ws.rb | File | 2.36 KB | 0644 |
|
| wss.rb | File | 567 B | 0644 |
|