2003-12-16 00:44:25 -05:00
|
|
|
module RI
|
|
|
|
|
|
|
|
# Encapsulate all the strangeness to do with finding out
|
|
|
|
# where to find RDoc files
|
|
|
|
#
|
|
|
|
# We basically deal with three directories:
|
|
|
|
#
|
|
|
|
# 1. The 'system' documentation directory, which holds
|
|
|
|
# the documentation distributed with Ruby, and which
|
|
|
|
# is managed by the Ruby install process
|
|
|
|
# 2. The 'site' directory, which contains site-wide
|
|
|
|
# documentation added locally.
|
|
|
|
# 3. The 'user' documentation directory, stored under the
|
|
|
|
# user's own home directory.
|
|
|
|
#
|
|
|
|
# There's contention about all this, but for now:
|
|
|
|
#
|
2003-12-18 16:08:25 -05:00
|
|
|
# system:: $datadir/ri/<ver>/system/...
|
|
|
|
# site:: $datadir/ri/<ver>/site/...
|
2003-12-16 00:44:25 -05:00
|
|
|
# user:: ~/.rdoc
|
|
|
|
|
|
|
|
module Paths
|
|
|
|
|
|
|
|
#:stopdoc:
|
|
|
|
require 'rbconfig'
|
|
|
|
|
|
|
|
DOC_DIR = "doc/rdoc"
|
|
|
|
|
* mkconfig.rb: generate RbConfig instead of Config.
* instruby.rb, rubytest.rb, runruby.rb, bcc32/Makefile.sub,
ext/extmk.rb, ext/dl/extconf.rb, ext/iconv/charset_alias.rb,
lib/mkmf.rb, lib/rdoc/ri/ri_paths.rb,
lib/webrick/httpservlet/cgihandler.rb,
test/dbm/test_dbm.rb, test/gdbm/test_gdbm.rb,
test/ruby/envutil.rb, test/soap/calc/test_calc_cgi.rb,
test/soap/header/test_authheader_cgi.rb, test/soap/ssl/test_ssl.rb,
win32/mkexports.rb, win32/resource.rb: Use RbConfig instead of
Config.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9970 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-02-20 03:34:53 -05:00
|
|
|
version = RbConfig::CONFIG['ruby_version']
|
2003-12-18 16:08:25 -05:00
|
|
|
|
* mkconfig.rb: generate RbConfig instead of Config.
* instruby.rb, rubytest.rb, runruby.rb, bcc32/Makefile.sub,
ext/extmk.rb, ext/dl/extconf.rb, ext/iconv/charset_alias.rb,
lib/mkmf.rb, lib/rdoc/ri/ri_paths.rb,
lib/webrick/httpservlet/cgihandler.rb,
test/dbm/test_dbm.rb, test/gdbm/test_gdbm.rb,
test/ruby/envutil.rb, test/soap/calc/test_calc_cgi.rb,
test/soap/header/test_authheader_cgi.rb, test/soap/ssl/test_ssl.rb,
win32/mkexports.rb, win32/resource.rb: Use RbConfig instead of
Config.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9970 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-02-20 03:34:53 -05:00
|
|
|
base = File.join(RbConfig::CONFIG['datadir'], "ri", version)
|
2004-02-09 03:48:55 -05:00
|
|
|
SYSDIR = File.join(base, "system")
|
2003-12-18 16:08:25 -05:00
|
|
|
SITEDIR = File.join(base, "site")
|
2003-12-16 00:44:25 -05:00
|
|
|
homedir = ENV['HOME'] || ENV['USERPROFILE'] || ENV['HOMEPATH']
|
|
|
|
|
|
|
|
if homedir
|
|
|
|
HOMEDIR = File.join(homedir, ".rdoc")
|
|
|
|
else
|
|
|
|
HOMEDIR = nil
|
|
|
|
end
|
|
|
|
|
2003-12-18 16:08:25 -05:00
|
|
|
# This is the search path for 'ri'
|
2003-12-16 00:44:25 -05:00
|
|
|
PATH = [ SYSDIR, SITEDIR, HOMEDIR ].find_all {|p| p && File.directory?(p)}
|
|
|
|
end
|
|
|
|
end
|