Template:Installation/RVM: Difference between revisions

From diaspora* project wiki
No edit summary
No edit summary
Line 3: Line 3:
We recommend using [http://rvm.io Ruby Version Manager] it will ensure you're always on the currently recommended Ruby version and cleanly separate your Diaspora installation from all other Ruby applications on your machine. If you opt for not using it ensure your Ruby version is at least 1.9.2-p320, prior versions are incompatible. Be aware that his version is not maintained with security updates from the Ruby core team anymore. We do not support Ruby 2.0 yet. We currently recommend using {{#var:variablename}}.
We recommend using [http://rvm.io Ruby Version Manager] it will ensure you're always on the currently recommended Ruby version and cleanly separate your Diaspora installation from all other Ruby applications on your machine. If you opt for not using it ensure your Ruby version is at least 1.9.2-p320, prior versions are incompatible. Be aware that his version is not maintained with security updates from the Ruby core team anymore. We do not support Ruby 2.0 yet. We currently recommend using {{#var:variablename}}.


=== Installing RVM ===
=== Install RVM ===


As the user you want to run Diaspora under, that is '''not as root''' run:
As the user you want to run Diaspora under, that is '''not as root''' run:
Line 13: Line 13:
and follow the instructions.
and follow the instructions.


=== Setting up RVM ===
=== Set up RVM ===


Ensure the following line is in your <tt>~/.bashrc</tt>:
Ensure the following line is in your <tt>~/.bashrc</tt>:
Line 28: Line 28:




=== Installing Bundler into the global gemset ===
=== Install Bundler into the global gemset ===


<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">

Revision as of 10:33, 14 June 2013


We recommend using Ruby Version Manager it will ensure you're always on the currently recommended Ruby version and cleanly separate your Diaspora installation from all other Ruby applications on your machine. If you opt for not using it ensure your Ruby version is at least 1.9.2-p320, prior versions are incompatible. Be aware that his version is not maintained with security updates from the Ruby core team anymore. We do not support Ruby 2.0 yet. We currently recommend using .

Install RVM

As the user you want to run Diaspora under, that is not as root run:

curl -L dspr.tk/1t | bash

and follow the instructions.

Set up RVM

Ensure the following line is in your ~/.bashrc:

[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm"

Ensure the currently recommend version of Ruby is installed:

rvm install {{#var:variablename}}


Install Bundler into the global gemset

rvm use {{#var:variablename}}@global
gem install bundler