1 #
2 # $Id: https.rb,v 1.1 2002/01/10 08:00:51 akira Exp $
3 #
4 # Copyright (c) 2001 akira yamada <akira@ruby-lang.org>
5 # You can redistribute it and/or modify it under the same term as Ruby.
6 #
7
8 require 'uri/http'
9
10 module URI
11
12 =begin
13
14 == URI::HTTPS
15
16 === Super Class
17
18 ((<URI::HTTP>))
19
20 =end
21
22 class HTTPS < HTTP
23 DEFAULT_PORT = 443
24 end
25 @@schemes['HTTPS'] = HTTPS
26 end # URI