On Mon, Mar 16, 2009 at 5:11 PM, VS <[email protected]> wrote: > How can I get ruby19 to replace ruby ?
You can create a link from the ruby19 to the current ruby. `which ruby` will tell you the path to the current ruby. I'll pretend it said "/usr/bin/ruby". Move the current ruby someplace else. mv /usr/bin/ruby /some/place/else `which ruby19` will tell you the path to the ruby19. Add a link: ln -s /path/to/ruby19 /usr/bin/ruby -- Greg Donald http://destiney.com/ --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---

