* transcode.c (transcode_restartable): my_transcoder argument removed.
[ruby-svn.git] / lib / uri.rb
blobf7110f18fd817a240a8b67a1b3cf7087912538b1
2 # URI support for Ruby
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$
10
11 # See URI for documentation
14 module URI
15   # :stopdoc:
16   VERSION_CODE = '000911'.freeze
17   VERSION = VERSION_CODE.scan(/../).collect{|n| n.to_i}.join('.').freeze
18   # :startdoc:
20 end
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'