/ubuntu_rvm

Ubuntu package for Ruby RVM

Apache License 2.0Apache-2.0

RVM package for Ubuntu

RVM is a command-line tool which allows you to easily install, manage, and work with multiple ruby environments from interpreters to sets of gems.

This package installs rvm with some defaults:

  • stable rvm is used;
  • rvm is installed using mixed-mode install: usable by all users on the system, with isolated rubies/gemsets in user's $HOME (see more here);
  • rvm is installed into /usr/share/rvm (as Debian/Ubuntu convention);
  • all sudoers are automatic added to rvm group at install;
  • all sudoers get local gemsets enabled;

Additionally automatic updates are provided by a Ubuntu PPA.

Install

1. Add the PPA and install the package

Open a terminal (Ctrl+Alt+T) and run:

sudo apt-add-repository -y ppa:rael-gc/rvm
sudo apt-get update
sudo apt-get install rvm

2. Change your terminal window

Now, in order to always load rvm, change the Gnome Terminal to always perform a login.

At terminal window, click Edit > Profile Preferences, click on Title and Command tab and check Run command as login shell.

Terminal Screenshot

3. Logout and login

A lot of changes were made and in order to properly get all them working, you need to login and logout. This requires not only close terminal, but really logout and login again.

4. Install a ruby

Now you're ready to install rubies. Open a terminal (Ctrl+Alt+T) and run:

rvm install ruby

RVM Usage

RVM complete instructions are available at RVM repository: https://github.com/wayneeseguin/rvm/tree/stable

Additionally you can check manual pages too: open a Terminal (Ctrl+Alt+T) and run:

man rvm