Author: pdodds
Date: Wed Oct 4 10:27:22 2006
New Revision: 452946
URL: http://svn.apache.org/viewvc?view=rev&rev=452946
Log:
Needed to add toString implementation on Ruby class to get past SureFire
Modified:
incubator/servicemix/trunk/servicemix-script/src/test/resources/RubyExchangeProcessor.rb
Modified:
incubator/servicemix/trunk/servicemix-script/src/test/resources/RubyExchangeProcessor.rb
URL:
http://svn.apache.org/viewvc/incubator/servicemix/trunk/servicemix-script/src/test/resources/RubyExchangeProcessor.rb?view=diff&rev=452946&r1=452945&r2=452946
==============================================================================
---
incubator/servicemix/trunk/servicemix-script/src/test/resources/RubyExchangeProcessor.rb
(original)
+++
incubator/servicemix/trunk/servicemix-script/src/test/resources/RubyExchangeProcessor.rb
Wed Oct 4 10:27:22 2006
@@ -23,5 +23,9 @@
def stop()
print "Stopping"
end
+
+ def toString()
+ return "You do need to implement a toString?"
+ end
end