From 75d694e535282cd5e2b0ab4ac3743042e0d03e05 Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 16 Sep 2010 12:02:34 +0000 Subject: * lib/rdoc/ri/paths.rb (RDoc::RI::Paths.each): HOMEDIR can be nil if $HOME is unset. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29272 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/rdoc/ri/paths.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/rdoc/ri/paths.rb b/lib/rdoc/ri/paths.rb index df12045203..9b338d7ad8 100644 --- a/lib/rdoc/ri/paths.rb +++ b/lib/rdoc/ri/paths.rb @@ -26,7 +26,7 @@ module RDoc::RI::Paths # true # :site:: Where ri for installed libraries are stored. Yielded when # +site+ is true. Normally no ri data is stored here. - # :home:: ~/.ri. Yielded when +home+ is true. + # :home:: ~/.rdoc. Yielded when +home+ is true. # :gem:: ri data for an installed gem. Yielded when +gems+ is true. # :extra:: ri data directory from the command line. Yielded for each # entry in +extra_dirs+ @@ -38,7 +38,7 @@ module RDoc::RI::Paths yield SYSDIR, :system if system yield SITEDIR, :site if site - yield HOMEDIR, :home if home + yield HOMEDIR, :home if home and HOMEDIR gemdirs.each do |dir| yield dir, :gem -- cgit v1.2.3