use drb, get:
TypeError: can’t convert Class into String
This meant:
given
begin
rescue => e
you can’t do
puts “abc” + e.class + e.message
no, apparently the + e.class is not good enough.
use drb, get:
TypeError: can’t convert Class into String
This meant:
given
begin
rescue => e
you can’t do
puts “abc” + e.class + e.message
no, apparently the + e.class is not good enough.
complicated thingsin ruby seem scary to me…scawah!
use rails, get method collisions:
Never mind all of this. Your RadioreportHelper.load method is not being reached — instead you are getting load from ActiveSupport::Dependencies::Loadable. Try renaming the load method to something else.
“DRb::DRbUnknownError: NameError::Message”
meant “DRb ran into an NoMethodError” (intuitively) I think