Skip to content

Installing our ruby version

Colin edited this page Jun 9, 2016 · 1 revision

We use a standard ruby version on this project; you can install it using some standard commands.

RVM users

  • See the documentation here: https://rvm.io/rvm/basics
  • Install with rvm install 2.2.4
  • Set with rvm use 2.2.4
  • Confirm it worked with ruby --version

rbenv users

  • Make sure you have ruby-build installed; you can install with brew install ruby-build
  • Install new ruby version with rbenv install 2.2.4
  • Navigate to the dcaf_case_manager project directory
  • Set with rbenv local 2.2.4
  • Confirm it worked with ruby --version