public
Description: All the extra stuff you could want for the Mack Framework.
Homepage: http://www.mackframework.com
Clone URL: git://github.com/markbates/mack-more.git
Made DRb::DRbObject use both the DRbObject's inspect and the referenced object's 
inspect. [#80]
markbates (author)
Fri Aug 08 07:08:42 -0700 2008
commit  377cddde21884f01815bcc920a3414c1929712e1
tree    8a44475e1a8e13706d2d2f1f94ac1be44a6045ab
parent  a12d7dea695d90ebf116d02dc135edb34d0784d7
...
57
58
59
60
 
 
 
 
 
 
 
61
62
63
...
57
58
59
 
60
61
62
63
64
65
66
67
68
69
0
@@ -57,6 +57,12 @@ end # Mack
0
 
0
 module DRb # :nodoc:
0
   class DRbObject # :nodoc:
0
-    undef_method :inspect
0
+
0
+    alias_method :original_inspect, :inspect
0
+    
0
+    def inspect
0
+      "#{original_inspect}|#{method_missing(:inspect)}"
0
+    end
0
+    
0
   end
0
 end
0
\ No newline at end of file

Comments