<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -30,6 +30,14 @@ module Mack # :nodoc:
               def method_missing(sym, *args)
                 #{base}.send(sym, *args)
               end
+              
+              def inspect
+                #{base}.inspect
+              end
+              
+              def to_s
+                #{base}.to_s
+              end
             
               # def respond_to?(sym)
               #   #{base}.respond_to?(sym)
@@ -45,4 +53,10 @@ module Mack # :nodoc:
       
     end # Object
   end # Distributed
-end # Mack
\ No newline at end of file
+end # Mack
+
+module DRb # :nodoc:
+  class DRbObject # :nodoc:
+    undef_method :inspect
+  end
+end
\ No newline at end of file</diff>
      <filename>mack-distributed/lib/mack-distributed/object.rb</filename>
    </modified>
    <modified>
      <diff>@@ -49,5 +49,19 @@ describe Mack::Distributed::Object do
     Mack::Distributed::CarProxy.instance.buy.should == true
   end
   
+  it &quot;should reference the original objects inspect method&quot; do
+    class Bike
+      include Mack::Distributed::Object
+      def inspect
+        &quot;&lt;BikeClass&gt;&quot;
+      end
+      def to_s
+        &quot;i'm a bike&quot;
+      end
+    end
+    c = Mack::Distributed::Utils::Rinda.read(:klass_def =&gt; :Bike)
+    c.inspect.should match(/Bike/)
+    c.new.to_s.should match(/i'm a bike/)
+  end
 
 end
\ No newline at end of file</diff>
      <filename>mack-distributed/spec/lib/distributed/object_spec.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>7ce307c13829c559ee9ab8ce881bcf19fcff5272</id>
    </parent>
  </parents>
  <author>
    <name>Mark Bates</name>
    <email>mark@markbates.com</email>
  </author>
  <url>http://github.com/markbates/mack-more/commit/a12d7dea695d90ebf116d02dc135edb34d0784d7</url>
  <id>a12d7dea695d90ebf116d02dc135edb34d0784d7</id>
  <committed-date>2008-08-07T15:03:34-07:00</committed-date>
  <authored-date>2008-08-07T15:03:34-07:00</authored-date>
  <message>Original object's inspect should be added to the distributed proxy object's inspect [#80 state:resolved]</message>
  <tree>12e117b3047026b9a97b4e195c2d65d784eab65a</tree>
  <committer>
    <name>Mark Bates</name>
    <email>mark@markbates.com</email>
  </committer>
</commit>
