Sha256: 14fd6e2f6c56187859d9396339511d1b802a4e460c09d3452459f94a788c3dab
Contents?: true
Size: 498 Bytes
Versions: 2
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 11747 2007-02-15 02:41:45Z knu $ # 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
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
rubysl-uri-1.0.0 | lib/uri/https.rb |
ruby_on_ruby-0.0.1 | vendor/javascripts/emscripted-ruby/lib/uri/https.rb |