Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 420 Bytes

GETTING_STARTED_WITH_RUBY.md

File metadata and controls

25 lines (17 loc) · 420 Bytes

Setting up Ruby

  1. Install homebrew. See instructions on their website, http://brew.sh/.

  2. Install postgres.

brew install postgresql
  1. Install rvm. See intructions on their website, https://rvm.io/.

  2. Use rvm to install the current ruby version.

rvm install ruby-2.3.1
  1. Install bundler.
gem install bundler