From 42ad5216ec57a5890eb20230efb09e1aa53ed528 Mon Sep 17 00:00:00 2001 From: gsinclair Date: Wed, 24 Mar 2004 11:53:31 +0000 Subject: * lib/uri.rb: Documented (thanks Dmitry V. Sabanin). * lib/uri/common.rb: Ditto. * lib/uri/ftp.rb: Ditto. * lib/uri/generic.rb: Ditto. * lib/uri/http.rb: Ditto. * lib/uri/https.rb: Ditto. * lib/uri/ldap.rb: Ditto. * lib/uri/mailto.rb: Ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6015 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/uri.rb | 36 +++++++++++------------------------- 1 file changed, 11 insertions(+), 25 deletions(-) (limited to 'lib/uri.rb') diff --git a/lib/uri.rb b/lib/uri.rb index fe1fdbe571..ec9a18cd31 100644 --- a/lib/uri.rb +++ b/lib/uri.rb @@ -1,37 +1,23 @@ # -# $Id$ +# = uri.rb # -# Copyright (c) 2001 akira yamada -# You can redistribute it and/or modify it under the same term as Ruby. +# URI support for Ruby +# +# Author:: Akira Yamada +# Documentation:: Akira Yamada , Dmitry V. Sabanin +# License:: +# Copyright (c) 2001 akira yamada +# You can redistribute it and/or modify it under the same term as Ruby. +# Revision:: $Id$ +# +# See URI for documentation # - -=begin - - Copyright (c) 2001 akira yamada - You can redistribute it and/or modify it under the same term as Ruby. - -= URI - URI support for Ruby - -=end module URI VERSION_CODE = '000911'.freeze VERSION = VERSION_CODE.scan(/../).collect{|n| n.to_i}.join('.').freeze end -=begin - -== Components - - * (()) Module - * (()) Class - * (()) Class - * (()) Class - * (()) Class - * (()) Class - * (()) Class - -=end require 'uri/common' require 'uri/generic' require 'uri/ftp' -- cgit v1.2.3