From 6926a10297982f09312b4da3a3bb14f28e877978 Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 2 Apr 2010 04:52:03 +0000 Subject: * lib/rdoc/ri/paths.rb (RDoc::HOMEDIR): expand_path deals with platform dependent envirionments. reapplied r21312. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27177 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/rdoc/ri/paths.rb | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'lib/rdoc') diff --git a/lib/rdoc/ri/paths.rb b/lib/rdoc/ri/paths.rb index 178142d35f..7090a58d44 100644 --- a/lib/rdoc/ri/paths.rb +++ b/lib/rdoc/ri/paths.rb @@ -13,12 +13,8 @@ module RDoc::RI::Paths base = File.join RbConfig::CONFIG['datadir'], "ri", version SYSDIR = File.join base, "system" SITEDIR = File.join base, "site" - homedir = File.expand_path('~') || - ENV['HOME'] || ENV['USERPROFILE'] || ENV['HOMEPATH'] + HOMEDIR = (File.expand_path("~/.rdoc") rescue nil) - HOMEDIR = if homedir then - File.join homedir, ".rdoc" - end #:startdoc: @gemdirs = nil -- cgit v1.2.3