Merge pull request #3648 from marlonandrade/adjust_brew_bundle

Adjust Brewfile to follow homebrew-bundle syntax
This commit is contained in:
Sam 2015-08-21 10:37:24 +10:00
commit b494383fcc

View File

@ -1,22 +1,19 @@
# Install development dependencies on Mac OS X using Homebrew (http://mxcl.github.com/homebrew) # Install development dependencies on Mac OS X using Homebrew (http://mxcl.github.com/homebrew)
# ensure that Homebrew's sources are up to date
update
# add this repo to Homebrew's sources # add this repo to Homebrew's sources
tap homebrew/dupes tap 'homebrew/dupes'
# install the gcc compiler required for ruby # install the gcc compiler required for ruby
install apple-gcc42 brew 'apple-gcc42'
# you probably already have git installed; ensure that it is the latest version # you probably already have git installed; ensure that it is the latest version
install git brew 'git'
# install the PostgreSQL database # install the PostgreSQL database
install postgresql brew 'postgresql'
# install the Redis datastore # install the Redis datastore
install redis brew 'redis'
# install headless Javascript testing library # install headless Javascript testing library
install phantomjs brew 'phantomjs'