20846: Update install docs to match `arvados-server install` recipe.
[arvados.git] / doc / _includes / _install_ruby_and_bundler.liquid
index 8fae4bf3bf35899a4754ef28720c259ede786714..f9330824988fe2050ebe39b2f64655b666b04fe1 100644 (file)
@@ -99,15 +99,15 @@ Build and install Ruby:
 <notextile>
 <pre><code><span class="userinput">mkdir -p ~/src
 cd ~/src
-curl -f https://cache.ruby-lang.org/pub/ruby/2.7/ruby-2.7.5.tar.gz | tar xz
-cd ruby-2.7.5
-./configure --disable-install-rdoc
-make
+curl -f https://cache.ruby-lang.org/pub/ruby/3.2/ruby-3.2.2.tar.gz | tar xz
+cd ruby-3.2.2
+./configure --disable-install-static-library --enable-shared --disable-install-doc
+make -j8
 sudo make install
 
 # Make sure the post install script can find the gem and ruby executables
 sudo ln -s /usr/local/bin/gem /usr/bin/gem
 sudo ln -s /usr/local/bin/ruby /usr/bin/ruby
 # Install bundler
-sudo -i gem install bundler</span>
+sudo -i gem install bundler --no-document</span>
 </code></pre></notextile>