I have a server running an antiquated Ruby 1.8.6 that was the default with Ubuntu 8.04 and I need to upgrade to 1.8.7. I'm thinking RVM is the best option for this, but I'm wondering if there are any pitfall with migrating everything over to this new version. For example, if I set rvm to be the default for when I open a new console, how do I use the previously installed version of Ruby to stop my thin servers? Anything else I should be cautious about?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
This is a reasonable way to do it. You could use something like rvm wrapper to create a new thin executable which fires up the correct RVM:
FWIW, There's also ruby-build, which provides less of a solution to the problem of managing multiple rubies and multiple projects on the same machine. But, one could argue that this "less of a solution" is actually "enough of a solution"). With ruby-build you might be able to directly refer to the full path to your thin installation, instead of creating a wrapper script. Update: or you could use RVM shell, as I describe in this SO answer. |
|||
|
|