/tools/Ruby/lib/ruby/1.8/uri.rb

http://github.com/agross/netopenspace · Ruby · 29 lines · 12 code · 3 blank · 14 comment · 0 complexity · 53385c750799a32669c03ac0aee26172 MD5 · raw file

  1. #
  2. # URI support for Ruby
  3. #
  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 16038 2008-04-15 09:41:47Z kazu $
  10. #
  11. # See URI for documentation
  12. #
  13. module URI
  14. # :stopdoc:
  15. VERSION_CODE = '000911'.freeze
  16. VERSION = VERSION_CODE.scan(/../).collect{|n| n.to_i}.join('.').freeze
  17. # :startdoc:
  18. end
  19. require 'uri/common'
  20. require 'uri/generic'
  21. require 'uri/ftp'
  22. require 'uri/http'
  23. require 'uri/https'
  24. require 'uri/ldap'
  25. require 'uri/ldaps'
  26. require 'uri/mailto'