Joe Van Dyk wrote:

> Simpler question:
>
> Ruby is installed in /foo.  I want to install a Ruby library to /goo,
> and another Ruby library to /bar.  How straight forward is that to set
> up?  What flags to I need to give to each libraries setup.rb or
> exec_conf.rb?

  sudo ruby setup.rb install --prefix="foo"

You'll either need to symlink into the typical paths or add to the
$LOAD_PATH.

BTW, gems basically does this already, albiet foo-1.0.0/, Not usre
about architecture though.

Also, I have a project that relates to this, so I'm wonder what you
working on?

T.