Skip to content

Instantly share code, notes, and snippets.

@hadifarnoud
Created December 22, 2013 13:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hadifarnoud/8082351 to your computer and use it in GitHub Desktop.
Save hadifarnoud/8082351 to your computer and use it in GitHub Desktop.
Install Ruby and Ruby on Rails environment
install Homebrew if you don't have it already
$ ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"
then install rbenv and ruby-build
$ brew install rbenv ruby-build
finally, install Ruby and Rails
$ rbenv install 2.0.0-p353
$ rbenv global 2.0.0-p353
$ gem install rdoc
$ gem install bundler
$ gem install rake
$ rbenv rehash
$ gem install rails
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment