OSDN Git Service

ruby-1.9.1-rc1
[splhack/AndroidRuby.git] / lib / ruby-1.9.1-rc1 / lib / uri.rb
1 #
2 # URI support for Ruby
3 #
4 # Author:: Akira Yamada <akira@ruby-lang.org>
5 # Documentation:: Akira Yamada <akira@ruby-lang.org>, Dmitry V. Sabanin <sdmitry@lrn.ru>
6 # License:: 
7 #  Copyright (c) 2001 akira yamada <akira@ruby-lang.org>
8 #  You can redistribute it and/or modify it under the same term as Ruby.
9 # Revision:: $Id: uri.rb 13772 2007-10-25 00:53:34Z akira $
10
11 # See URI for documentation
12 #
13
14 module URI
15   # :stopdoc:
16   VERSION_CODE = '000911'.freeze
17   VERSION = VERSION_CODE.scan(/../).collect{|n| n.to_i}.join('.').freeze
18   # :startdoc:
19
20 end
21
22 require 'uri/common'
23 require 'uri/generic'
24 require 'uri/ftp'
25 require 'uri/http'
26 require 'uri/https'
27 require 'uri/ldap'
28 require 'uri/ldaps'
29 require 'uri/mailto'