Created
July 1, 2010 05:22
-
-
Save alkema/459610 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
# recent xcode | |
# http://developer.apple.com/technologies/xcode.html | |
# brew | |
ruby -e "$(curl -fsS http://gist.github.com/raw/323731/install_homebrew.rb)" | |
brew doctor | |
# UNIX stuff | |
brew install git | |
brew install imagemagick | |
brew install ack | |
brew install wget | |
brew install postgresql | |
# setup postgres | |
initdb /usr/local/var/postgres | |
launchctl load -w /usr/local/Cellar/postgresql/8.4.4/org.postgresql.postgres.plist | |
creatuser | |
# rvm | |
bash < <( curl http://rvm.beginrescueend.com/releases/rvm-install-head ) | |
rvm install ree | |
rvm --default ree | |
rvm gemset create global | |
rvm gemset use global | |
# install gems common to my different apps into the @global rvm gemset | |
gem install pg | |
gem install rails | |
gem install mongrel | |
gem install cucumber | |
gem install cucumber-rails | |
gem install shoulda | |
gem install rspec | |
gem install rspec-rails | |
gem install formtastic | |
gem install paperclip |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment