This shows you the differences between two versions of the page.
— |
unix:ruby [2015/05/15 12:37] (current) bajeluk created |
||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Ruby ====== | ||
+ | ===== Install ===== | ||
+ | |||
+ | Download and install the RVM (http://rvm.io/rvm/install) together with current stable version of Ruby. This is done by ''root'' in order to install it to ''/usr/local/rvm/rubies/'' | ||
+ | |||
+ | \curl -sSL https://get.rvm.io | sudo bash -s stable --ruby | ||
+ | |||
+ | Further, add all users which want to use RVM/Ruby into the ''rvm'' group | ||
+ | |||
+ | sudo usermod -a -G rvm myuser1 | ||
+ | |||
+ | After re-login, ''rvm'' should be enabled for all these users. Activate current version of ruby via | ||
+ | |||
+ | rvm use 2.2.1 |