Adjust Brewfile to follow homebrew-bundle syntax

According to https://meta.discourse.org/t/brew-bundle-is-dead/23962
the official replacement for `brew bundle` is homebrew-bundle
(https://github.com/Homebrew/homebrew-bundle) and its syntax changed a
little bit.
This commit is contained in:
Marlon Andrade 2015-08-11 14:13:07 -03:00
parent 750a3ce5e5
commit 690ad2ae5d
1 changed files with 6 additions and 9 deletions

View File

@ -1,22 +1,19 @@
# 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
tap homebrew/dupes
tap 'homebrew/dupes'
# 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
install git
brew 'git'
# install the PostgreSQL database
install postgresql
brew 'postgresql'
# install the Redis datastore
install redis
brew 'redis'
# install headless Javascript testing library
install phantomjs
brew 'phantomjs'