Skip to content

Instantly share code, notes, and snippets.

@joesondow
Last active December 28, 2016 01:56
Show Gist options
  • Save joesondow/1e1a3f152560f69a26a2d425ec2a64df to your computer and use it in GitHub Desktop.
Save joesondow/1e1a3f152560f69a26a2d425ec2a64df to your computer and use it in GitHub Desktop.
Creating a Happy Ruby Environment on OS X

Install Brew

Set up Git

Modify .bash_profile

Set up Sublime 2 for Ruby

Install tree

brew install tree

Install rbenv and a recent stable version of Ruby

brew install rbenv
rbenv install 2.3.3

Install [rspec] because for some reason installing bundler doesn't do this.

gem install rspec

Install bundler

gem install bundler

Read about how to use Bundler.

(To create sample project "puppy"):

bundle gem puppy

Learn Ruby from scratch: https://www.ruby-lang.org/en/documentation/quickstart/

Further Ruby study: https://www.ruby-lang.org/en/documentation/

Ruby Koans: http://rubykoans.com/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment