From: Lorgio Jimenez Date: 2008-05-30T01:15:30+09:00 Subject: Re: DRb Problems with Mac OS X 10.5.3 Blaz Rubi wrote: > I put this just before "Rails::Initializer.run(:set_load_path)" in > config/boot.rb > > ======= > # HACK > require 'drb' > class DRb::DRbTCPSocket > class << self > alias parse_uri_orig parse_uri > def parse_uri(*args) > ary = parse_uri_orig(*args) > ary[1] = nil if ary[1] == 0 > ary > end > end > end > ======= Incase you get errors and cannot get the hack above, try putting it in the environment.rb file INSIDE the config block. -- Posted via http://www.ruby-forum.com/.