source: extensions/gsdl-video/trunk/installed/cmdline/lib/ruby/1.8/uri.rb@ 18425

Last change on this file since 18425 was 18425, checked in by davidb, 15 years ago

Video extension to Greenstone

File size: 694 bytes
Line 
1#
2# URI support for Ruby
3#
4# Author:: Akira Yamada <[email protected]>
5# Documentation:: Akira Yamada <[email protected]>, Dmitry V. Sabanin <[email protected]>
6# License::
7# Copyright (c) 2001 akira yamada <[email protected]>
8# You can redistribute it and/or modify it under the same term as Ruby.
9# Revision:: $Id: uri.rb 11708 2007-02-12 23:01:19Z shyouhei $
10#
11# See URI for documentation
12#
13
14module URI
15 # :stopdoc:
16 VERSION_CODE = '000911'.freeze
17 VERSION = VERSION_CODE.scan(/../).collect{|n| n.to_i}.join('.').freeze
18 # :startdoc:
19
20end
21
22require 'uri/common'
23require 'uri/generic'
24require 'uri/ftp'
25require 'uri/http'
26require 'uri/https'
27require 'uri/ldap'
28require 'uri/mailto'
Note: See TracBrowser for help on using the repository browser.