public
Description: Rubinius, the Ruby VM
Homepage: http://rubini.us
Clone URL: git://github.com/evanphx/rubinius.git
Search Repo:
Compatibility fix for 1.8 from ruby trunk
Eric Hodel (author)
Thu Feb 14 14:39:10 -0800 2008
commit  aafb49225f4f2a0a7e4ddd9d1bf842e9b2cb9305
tree    381175f041931e96f5e5628d2cd2c55cdc5e63a5
parent  d24f37f3da50e1a9a6b8daabef89dc2aa08a2556
...
43
44
45
46
 
 
47
48
49
...
43
44
45
 
46
47
48
49
50
0
@@ -43,7 +43,8 @@ module RDoc::RI::Paths
0
   PATH = [ SYSDIR, SITEDIR, HOMEDIR ].find_all {|p| p && File.directory?(p)}
0
 
0
   begin
0
- require 'rubygems' unless defined?(Gem) and Gem::Enable
0
+ require 'rubygems' unless defined?(Gem) and defined?(Gem::Enable) and
0
+ Gem::Enable
0
 
0
     # HACK dup'd from Gem.latest_partials and friends
0
     all_paths = []

Comments

    No one has commented yet.