mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 07:38:45 -05:00
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:
parent
750a3ce5e5
commit
690ad2ae5d
1 changed files with 6 additions and 9 deletions
15
Brewfile
15
Brewfile
|
@ -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'
|
||||||
|
|
Loading…
Reference in a new issue