2

I can register already installed a Ruby environment to URU by following command in terminal:

uru admin add c:\ruby-2.2\bin

But, What is the way to install another ruby version in URU along existing one?

AR Rose
  • 361
  • 4
  • 17
  • 1
    Download ruby version and register them http://www.neverletdown.net/2015/08/managing-multiple-ruby-versions-with-uru.html – Farkhat Mikhalko Dec 11 '16 at 16:26
  • @MihalkoFarhat Yes, you're right. Please write an answer with some explanation about new ruby install to separate folder and add this environment to URU. Then, I can accept the answer. Thanks. – AR Rose Dec 11 '16 at 16:37

1 Answers1

7

You can use rubyinstaller to install specific version of ruby. After install was completed, you will have some version of ruby. You know the destination of them.

To add already installed but not registered version of ruby:

uru admin add SOME_PATH/../bin

Good article about rubyinstaller and uru.

Rubyinstaller downloads.

Uru examples.

Similar question on SO.

Community
  • 1
  • 1
Farkhat Mikhalko
  • 3,565
  • 3
  • 23
  • 37