pacman -SyOnce that's done, we can start installing RVM, Ruby Version Manager. This is a great program that lets you use several versions of Ruby on one server; however, in this case, we will just use it to install the latest version of Ruby on the control panel.
pacman -S curlTo install RVM, open terminal and type in this command:
curl -L get.rvm.io | bash -s stableAfter it is done installing, open your .bashrc file
nano .bashrcand add this to the end:
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm"This will load RVM on startup. To apply the changes, exit your session and log back in.
rvm requirements
sudo pacman -S libyamlinstalling Ruby with RVM is easy.
rvm install 1.9.3Ruby is now installed. However, since we accessed it through a program that has a variety of Ruby versions, we need to tell the system to use 1.9.3 by default.
rvm use 1.9.3 --default
rvm rubygems current
gem install railsThis process may take a while, be patient with it. Once it finishes you will have Ruby on Rails installed on your control panel.
ruby -v rails -v
Article ID: 216
Created On: Sun, Dec 29, 2013 at 6:26 AM
Last Updated On: Sun, Jan 5, 2014 at 8:12 PM
Authored by: ASPHostServer Administrator [asphostserver@gmail.com]
Online URL: http://faq.asphosthelpdesk.com/article.php?id=216