summaryrefslogtreecommitdiff
path: root/lib/rdoc/ri/paths.rb
diff options
context:
space:
mode:
authordrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-02-14 22:38:20 +0000
committerdrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-02-14 22:38:20 +0000
commitab3e8e6143049662cf724c8574cd9fb8e248a4a0 (patch)
tree0378ceb48031855fbdb932efeb2431f0a3e6eb68 /lib/rdoc/ri/paths.rb
parent48046586497d50c99c185a11b19cbe1d3a5d1a86 (diff)
Preserve ri compatibility with 1.8
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15478 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rdoc/ri/paths.rb')
-rw-r--r--lib/rdoc/ri/paths.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/rdoc/ri/paths.rb b/lib/rdoc/ri/paths.rb
index 035d0fc242..b4b6c64925 100644
--- a/lib/rdoc/ri/paths.rb
+++ b/lib/rdoc/ri/paths.rb
@@ -43,7 +43,8 @@ module RDoc::RI::Paths
PATH = [ SYSDIR, SITEDIR, HOMEDIR ].find_all {|p| p && File.directory?(p)}
begin
- require 'rubygems' unless defined?(Gem) and Gem::Enable
+ require 'rubygems' unless defined?(Gem) and defined?(Gem::Enable) and
+ Gem::Enable
# HACK dup'd from Gem.latest_partials and friends
all_paths = []