Add 'apps/arv-web/' from commit 'f9732ad8460d013c2f28363655d0d1b91894dca5'
[arvados.git] / doc / install / install-manual-prerequisites-ruby.html.textile.liquid
1 ---
2 layout: default
3 navsection: installguide
4 title: Install Ruby and bundler
5 ...
6
7 We recommend Ruby >= 2.1.
8
9 h2(#rvm). Option 1: Install with rvm
10
11 <notextile>
12 <pre><code>~$ <span class="userinput">\curl -sSL https://get.rvm.io | bash -s stable --ruby=2.1</span>
13 ~$ <span class="userinput">gem install bundler
14 </span></code></pre></notextile>
15
16 h2(#fromsource). Option 2: Install from source
17
18 <notextile>
19 <pre><code><span class="userinput">mkdir -p ~/src
20 cd ~/src
21 wget http://cache.ruby-lang.org/pub/ruby/2.1/ruby-2.1.3.tar.gz
22 tar xzf ruby-2.1.3.tar.gz
23 cd ruby-2.1.3
24 ./configure
25 make
26 sudo make install
27
28 sudo gem install bundler</span>
29 </code></pre></notextile>
30
31