Skip to content

Instantly share code, notes, and snippets.

@acoffman
Last active June 27, 2017 19:11
Show Gist options
  • Save acoffman/6453bc355b580b59be2556b09db81a38 to your computer and use it in GitHub Desktop.
Save acoffman/6453bc355b580b59be2556b09db81a38 to your computer and use it in GitHub Desktop.
Basic Ruby/Rails Setup

OS X Command Line Tools

xcode-select --install

Homebrew (https://brew.sh/)

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew update
brew install openssl libyaml libffi rbenv ruby-build
rbenv init
rbenv install 2.3.3
rbenv global 2.3.3
which ruby
which gem
gem install bundler
brew install postgres
brew services start postgresql
brew install node@6
gem install rails
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment