Created
August 21, 2010 05:11
-
-
Save kern/541800 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install homebrew | |
ruby -e "$(curl -fsS http://gist.github.com/raw/323731/install_homebrew.rb)" | |
# Install git | |
brew install git | |
# Update homebrew | |
brew update | |
# Install homebrew packages | |
brew install node | |
brew install npm | |
brew install couchdb | |
brew install tree | |
brew install wget | |
# Install npm packages | |
npm install http-console | |
npm install express | |
npm install coffee-script | |
# Install rvm | |
bash < <( curl http://rvm.beginrescueend.com/releases/rvm-install-head ) | |
# Install the various versions of Ruby | |
rvm install ree | |
rvm install 1.9.2 | |
rvm install 1.8.7 | |
# Make 1.8.7 the default | |
rvm 1.8.7 --default | |
rvm use default | |
# Rails 2 | |
rvm gemset create rails2 | |
rvm gemset use rails2 | |
gem install rails --version '~> 2.3' | |
# Rails 3 | |
rvm gemset create rails3 | |
rvm gemset use rails3 | |
gem install rails --version '~> 3.0' --pre | |
# 1.8.7 Global gems | |
rvm gemset use global | |
gem install bundler --pre | |
gem install rake | |
gem install watchr | |
gem install asdf | |
gem install rspec --pre | |
gem install thin | |
gem install heroku | |
# 1.9.2 Global gems | |
rvm use 1.9.2 | |
gem install bundler --pre | |
gem install rake | |
gem install watchr | |
gem install asdf | |
gem install rspec --pre | |
gem install thin | |
gem install heroku |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment