Robert Feldt wrote: > FWIW: I used to have the same problem. No I fix this at install time; the > install script changes "require 'my1'" to "require 'myproject/my1'" etc. > > Dave's solution is probably nicer. I have done it just another way. Because I had all my library files in lib/ which are finally installed in xmlrpc4r/ and I want to run a test-script before installing, I have overridden "require": def require(file) if file =~ /^xmlrpc\/(.*)$/ file = "../lib/#$1" p file super(file) else super end end -- Michael Neumann