Ruby - HVboom/HowTo-DigitalOcean GitHub Wiki

Description

Ruby is...

A dynamic, open source programming language with a focus on simplicity and productivity. It has an elegant syntax that is natural to read and easy to write.

:speech_balloon: copied from the home page

Setup Ruby

  • As a precondition you need an up-to-date RVM installation.

  • Install latest stable ruby version

    # list all versions
    rvm list known
    
    # install Ruby 2.2.1
    rvm install 2.2.1
    rvm --default use 2.2.1