Skip to content

Commit

Permalink
Basic dev bootstrap for OS X
Browse files Browse the repository at this point in the history
  • Loading branch information
sj26 committed Jul 28, 2012
1 parent 657c2ef commit f5dd9cf
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
7 changes: 7 additions & 0 deletions bootstrap
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/usr/bin/env zsh

pushd $HOME

[ "$(uname -s)" = "Darwin" ] && .home/bootstrap-osx

popd
22 changes: 22 additions & 0 deletions bootstrap-osx
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,22 @@
/usr/bin/ruby -e "$(/usr/bin/curl -fsSL https://raw.github.com/mxcl/homebrew/master/Library/Contributions/install_homebrew.rb)"

brew install ack git hub psgrep pstree watch wget

brew tap homebrew/dupes
brew install apple-gcc42 automake autoconf
brew install mysql
brew install postgresql geos postgis
brew install redis
brew install node
brew install imagemagick ffmpeg
brew install rbenv ruby-build

using_gcc rbenv install 1.8.7-p358
using_gcc rbenv install ree-1.8.7-2012.02
rbenv install jruby-1.6.7.2
rbenv install rbx-1.2.4
rbenv install rbx-2.0.0-dev
VERSION=1.9.3-p125 curl https://raw.github.com/gist/1688857/2-$VERSION-patched.sh -o /tmp/$VERSION-perf && rbenv install /tmp/$VERSION-perf && rm /tmp/$VERSION-perf
rbenv global 1.9.3-p125-perf

rbenv exec gem install bundler

0 comments on commit f5dd9cf

Please sign in to comment.