Imported File#ftype spec from rubyspecs.
[rbx.git] / lib / uri.rb
blobe3546125b6d9a4fe0fed2e3b1f5e0fcb386d63c0
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: uri.rb 13772 2007-10-25 00:53:34Z akira $
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'