I'd like to include a complete version of Ruby, including all the
necessary libs, in the source tree for our internal app. That will
allow our unit tests/QA procedure/app deployment scripts to take
responsibility for upgrades to Ruby as well.
To do this, I of course need to include /usr/lib/ruby/* and
/usr/bin/ruby. And to set the PATH to use our local Ruby.
But it seems that I need to do more:
$ irb
irb(main):001:0> $:
=> ["/usr/lib/ruby/site_ruby/1.8",
"/usr/lib/ruby/site_ruby/1.8/i386-linux", "/usr/lib/ruby/site_ruby",
"/usr/lib/site_ruby/1.8", "/usr/lib/site_ruby/1.8/i386-linux",
"/usr/lib/site_ruby", "/usr/lib/ruby/1.8",
"/usr/lib/ruby/1.8/i386-linux", "."]
Where are those paths located? strings ruby didn't turn them up. I
need to be able to tell it to use the app's private ruby installation.
In general, has anyone done anything like this? What was their
experience? How would you recommend going about doing this?
I'd like to include a complete version of Ruby, including all the
necessary libs, in the source tree for our internal app. That will
allow our unit tests/QA procedure/app deployment scripts to take
responsibility for upgrades to Ruby as well.
To do this, I of course need to include /usr/lib/ruby/* and
/usr/bin/ruby. And to set the PATH to use our local Ruby.
But it seems that I need to do more:
$ irb
irb(main):001:0> $:
=> ["/usr/lib/ruby/site_ruby/1.8",
"/usr/lib/ruby/site_ruby/1.8/i386-linux", "/usr/lib/ruby/site_ruby",
"/usr/lib/site_ruby/1.8", "/usr/lib/site_ruby/1.8/i386-linux",
"/usr/lib/site_ruby", "/usr/lib/ruby/1.8",
"/usr/lib/ruby/1.8/i386-linux", "."]
Where are those paths located? strings ruby didn't turn them up. I
need to be able to tell it to use the app's private ruby installation.
In general, has anyone done anything like this? What was their
experience? How would you recommend going about doing this?
It's compiled in at build time, I think. Check out ruby config.
I think I'd try building it from source and installing in a custom
directory for example /opt/myruby. Then when you install it on the
target machines you put it in the same place.
I'm not sure if this is applicable in your particular situation, but you can
change $: at runtime using the "shift" and "unshift" methods. You
could modify your Ruby scripts to change $: as the first thing they do,
so all the paths point to your local version of Ruby.
Wayne
···
On 1/1/07, S. Robert James <srobertjames@gmail.com> wrote:
I'd like to include a complete version of Ruby, including all the
necessary libs, in the source tree for our internal app.
---
Wayne Vucenic
No Bugs Software
Ruby, C# and Erlang Agile Contract Programming in Silicon Valley
Is there a similar method to use a different Ruby version with Rails?
···
On Tue, 2007-01-02 at 08:17 +0900, Vincent Fourmond wrote:
S. Robert James wrote:
> Where are those paths located? strings ruby didn't turn them up. I
> need to be able to tell it to use the app's private ruby installation.
>
> In general, has anyone done anything like this? What was their
> experience? How would you recommend going about doing this?
You can install Ruby anywhere by getting the source code and running
something like:
./configure --prefix=/your/favorite/directory
make
make install
Then, you should make sure that the right version is used when running
your project. Make sure that:
* this install of ruby is in the $PATH
* your scripts include the full path to your ruby executable in the
#!... line