Skip to content

Instantly share code, notes, and snippets.

@alkema
Created July 1, 2010 05:22
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alkema/459610 to your computer and use it in GitHub Desktop.
Save alkema/459610 to your computer and use it in GitHub Desktop.
# 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