mirror of
				https://github.com/ruby/ruby.git
				synced 2022-11-09 12:17:21 -05:00 
			
		
		
		
	git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@6661 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
		
			
				
	
	
		
			28 lines
		
	
	
	
		
			649 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
	
		
			649 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
#
 | 
						|
# URI support for Ruby
 | 
						|
#
 | 
						|
# Author:: Akira Yamada <akira@ruby-lang.org>
 | 
						|
# Documentation:: Akira Yamada <akira@ruby-lang.org>, Dmitry V. Sabanin <sdmitry@lrn.ru>
 | 
						|
# License:: 
 | 
						|
#  Copyright (c) 2001 akira yamada <akira@ruby-lang.org>
 | 
						|
#  You can redistribute it and/or modify it under the same term as Ruby.
 | 
						|
# Revision:: $Id$
 | 
						|
# 
 | 
						|
# See URI for documentation
 | 
						|
#
 | 
						|
 | 
						|
module URI
 | 
						|
  # :stopdoc:
 | 
						|
  VERSION_CODE = '000911'.freeze
 | 
						|
  VERSION = VERSION_CODE.scan(/../).collect{|n| n.to_i}.join('.').freeze
 | 
						|
  # :startdoc:
 | 
						|
 | 
						|
end
 | 
						|
 | 
						|
require 'uri/common'
 | 
						|
require 'uri/generic'
 | 
						|
require 'uri/ftp'
 | 
						|
require 'uri/http'
 | 
						|
require 'uri/https'
 | 
						|
require 'uri/ldap'
 | 
						|
require 'uri/mailto'
 |