summaryrefslogtreecommitdiff
path: root/jni/ruby/lib/uri/https.rb
diff options
context:
space:
mode:
authorJari Vetoniemi <jari.vetoniemi@indooratlas.com>2020-03-16 18:49:26 +0900
committerJari Vetoniemi <jari.vetoniemi@indooratlas.com>2020-03-30 00:39:06 +0900
commitfcbf63e62c627deae76c1b8cb8c0876c536ed811 (patch)
tree64cb17de3f41a2b6fef2368028fbd00349946994 /jni/ruby/lib/uri/https.rb
Fresh start
Diffstat (limited to 'jni/ruby/lib/uri/https.rb')
-rw-r--r--jni/ruby/lib/uri/https.rb22
1 files changed, 22 insertions, 0 deletions
diff --git a/jni/ruby/lib/uri/https.rb b/jni/ruby/lib/uri/https.rb
new file mode 100644
index 0000000..cd854fd
--- /dev/null
+++ b/jni/ruby/lib/uri/https.rb
@@ -0,0 +1,22 @@
+# = 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 31555 2011-05-13 20:03:21Z drbrain $
+#
+# See URI for general documentation
+#
+
+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
+ # A Default port of 443 for URI::HTTPS
+ DEFAULT_PORT = 443
+ end
+ @@schemes['HTTPS'] = HTTPS
+end