-
Notifications
You must be signed in to change notification settings - Fork 242
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.
- 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
- Make sure you have
ruby-buildinstalled; you can install withbrew install ruby-build - Install new ruby version with
rbenv install 2.2.4 - Navigate to the
dcaf_case_managerproject directory - Set with
rbenv local 2.2.4 - Confirm it worked with
ruby --version