- Mac OS X 10.8
- Homebrew
- Apple Command Line Tools
- ZSH
- Git
- RVM
- Ruby 1.9.3
- Passenger
- MySQL
- ImageMagick
curl -L http://simian.us/psnfxzqh > ~/.profile
curl -L http://simian.us/bzqiywel > ~/.bashrc
curl -L http://simian.us/rliqzjfm > ~/.bash_profile
curl -L http://simian.us/cwkaetxl > ~/.gitignore
curl -L http://simian.us/rqtdphoj > ~/.rvmrc
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"
Download Apple's Command Line Tools
Login here
Search for "Command Line Tools"
Download and install xQuartz here
my /usr/share/terminfo dir was somehow corrupted, throwing this
error "Error opening terminal: xterm-256color" when I opened the terminal
Replacing the current terminfo dir with this repo fixed it.
You'll have to do it a few times to get back up to speed.
curl -L https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh | sh
curl https://raw.github.com/gist/1618992 > ~/.zshrc
brew install git
brew update
brew upgrade
\curl -sSL https://get.rvm.io | bash -s stable
rvm install 1.9.3
rvm 1.9.3 --default
ruby -v
rvm gemset use global
gem install passenger
passenger-install-apache2-module
sudo apachectl restart
brew install mysql
mysql_install_db --verbose --user=`whoami` --basedir="$(brew --prefix mysql)" --datadir=/usr/local/var/mysql --tmpdir=/tmp
This will start MYSQL on boot
cp /usr/local/Cellar/mysql/#{whatever-version}/com.mysql.mysqld.plist /Library/LaunchDaemons
launchctl load /Library/LaunchDaemons/com.mysql.mysqld.plist
launchctl list | grep mysql
mysql.server start
brew install imagemagick