lib/uri.rb
DEFINITIONS
This source file includes following functions.
1 #
2 # $Id: uri.rb,v 1.4 2002/06/12 09:31:41 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 =begin
9
10 Copyright (c) 2001 akira yamada <akira@ruby-lang.org>
11 You can redistribute it and/or modify it under the same term as Ruby.
12
13 = URI - URI support for Ruby
14
15 =end
16
17 module URI
18 VERSION_CODE = '000907'.freeze
19 VERSION = VERSION_CODE.scan(/../).collect{|n| n.to_i}.join('.').freeze
20 end
21
22 =begin
23
24 == Components
25
26 * ((<URI>)) Module
27 * ((<URI::Generic>)) Class
28 * ((<URI::FTP>)) Class
29 * ((<URI::HTTP>)) Class
30 * ((<URI::HTTPS>)) Class
31 * ((<URI::LDAP>)) Class
32 * ((<URI::MailTo>)) Class
33
34 =end
35 require 'uri/common'
36 require 'uri/generic'
37 require 'uri/ftp'
38 require 'uri/http'
39 require 'uri/https'
40 require 'uri/ldap'
41 require 'uri/mailto'