Skip to content

Instantly share code, notes, and snippets.

@cschiewek
Last active May 28, 2019 15:49
Show Gist options
  • Save cschiewek/fb0b650ffe26ea767c16e8ebf2e301ea to your computer and use it in GitHub Desktop.
Save cschiewek/fb0b650ffe26ea767c16e8ebf2e301ea to your computer and use it in GitHub Desktop.
Setting up your environment

There are many ways to install and configure Ruby in your development environment. If you don't have a working Ruby dev environment, this is our recommended setup for MacOS:

  • Install homebrew
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
  • Install rbenv
brew install rbenv
  • Install ruby 2.5.5
rbenv install 2.5.5
  • Make it the default
rbenv global 2.5.5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment