Setup: Your local machine
Requirements
- Linux or Mac OS X
- Ruby 2.1.x or newer. We recommend using RVM or rbenv for installing different Ruby versions on your local machine.
- Rubygems and Bundler
Please follow the install instructions of one of these projects.
Create a Ruby Version File in your working directory
The ruby-version.
echo 2.2.3 > .ruby-version
Check if Ruby and Bundler are installed:
Ruby
ruby -v
This will output your active Ruby Interpreter:
ruby 2.2.3p173 (2015-08-18 revision 51636) [x86_64-darwin14]
Bundler
bundle -v
If Bundler is not installed you have to do it manually:
gem install bundler