keyongtech


  keyongtech > ruby > 10/2008

 #1  
10-10-08, 05:05 PM
John Griffiths
Well so far things are going kind of good, I've built my own server and
it's sitting in colo running Debian Etch and Ruby 1.8.6 (built from
source)

Now me being me I wouldn't mind running 1.8.7 alongside 1.8.6 for my
Rails blogging software.

Has anyone had any experiences in running multiple versions of Ruby on
Debian Etch?

I found one article which explains how to run 3 using
update-alternatives but pretty unsure if it'll adapt well to Debian,

http://blog.michaelgreenly.com/2008/...-ubuntu-2.html

Seems possible, especially using:

./configure --prefix=/opt/ruby-1.8.7-p71

To set where to install the Ruby version, I'm imagining I'd have to run
gem --update like,

/opt/ruby-1.8.7-p71/bin/gem --update
or
/opt/ruby-1.8.7-p71/bin/gem install rails

to install the necessary gems per ruby install without touching the one
in /usr/bin/ruby,

then i'm imagining,

/opt/ruby-1.8.7-p71/bin/thin start -C /var/www/apps/myapp/thin.conf
...to start the thin webserver with my config file

Will try out on a virtual machine first, but am i on the right track or
is there something better?
 #2  
10-10-08, 05:11 PM
Stefano Crocco
Alle Friday 10 October 2008, John Griffiths ha scritto:
[..]
> to install the necessary gems per ruby install without touching the one
> in /usr/bin/ruby,
>
> then i'm imagining,
>
> /opt/ruby-1.8.7-p71/bin/thin start -C /var/www/apps/myapp/thin.conf
> ...to start the thin webserver with my config file
>
> Will try out on a virtual machine first, but am i on the right track or
> is there something better?


I'd also suggest to pass configure the --program-prefix or --program-suffix
arguments. This way, you can call the ruby 1.8.7 executable ruby187, instead
of just ruby and you won't have to use its full path every time you want to
use it. The same happens with the other executables, like irb and ri.

Stefano
 #3  
10-10-08, 05:20 PM
Hassan Schroeder
On Fri, Oct 10, 2008 at 9:05 AM, John Griffiths <indiehead> wrote:

> Seems possible, especially using:
>
> ./configure --prefix=/opt/ruby-1.8.7-p71
>
> To set where to install the Ruby version, I'm imagining I'd have to run
> gem --update like,
>
> /opt/ruby-1.8.7-p71/bin/gem --update


> is there something better?


I just create files with appropriate PATH settings, like
------------------------------------------------------------
export RUBY_HOME=/opt/ruby-1.8.7-p71
PATH=$RUBY_HOME/bin:$PATH
------------------------------------------------------------
Name them sensibly, and you can just type, e.g.
prompt% . 187
to source, and voila! No need to enter the entire path, or remember
to use a different name.

FWIW,
 #4  
10-10-08, 05:22 PM
John Griffiths
Thanks Stefano,

so if i were to do,

/configure --prefix=/opt/ruby-1.8.7-p71 --program-suffix=187

to make ruby187 point to /opt/ruby-1.8.7-p71/ruby ?
 #5  
10-10-08, 05:25 PM
Stefano Crocco
Alle Friday 10 October 2008, John Griffiths ha scritto:
> Thanks Stefano,
>
> so if i were to do,
>
> ./configure --prefix=/opt/ruby-1.8.7-p71 --program-suffix=187
>
> to make ruby187 point to /opt/ruby-1.8.7-p71/ruby ?


It doesn't create a symlink. It will change the name of the ruby executable:
not

/opt/ruby-1.8.7-p71/ruby

but

/opt/ruby-1.8.7-p71/ruby187

If you then put /opt/ruby-1.8.7-p71 in your PATH, you'll be able to use
ruby187 to call the new version and ruby to call the old version.

Stefano
Similar Threads
Running two versions of Ruby - Lessons Learned

After experimenting with Ruby 1.9 I've found I really like it and wanted to make it my main version of Ruby. My problem was that I have two programs that I use frequently...

Buiulding multiple versions of Ruby

This is the way that I build ruby from the latest svn sources. This allows me to have multiple versions and to compare the performance/behaviour of my builds against the...

Multiple Ruby versions for testing

[Note: parts of this message were removed to make it a legal post.] Hi list, I'm trying to test a gem (managed with Hoe) on my Ubuntu machine. The Ruby from the Ubuntu...

Multiple Versions of Ruby on same machine

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...

Running multiple versions of S&T

Hi, I have a full install of S&T 2003 on my desktop computer, and to save hard drive space, a minimal install of 2004 and 2005. Because of the poorly documented and...


All times are GMT. The time now is 05:32 PM. | Privacy Policy