mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 03:42:16 +08:00
Merge pull request #3648 from marlonandrade/adjust_brew_bundle
Adjust Brewfile to follow homebrew-bundle syntax
This commit is contained in:
commit
b494383fcc
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 New Issue
Block a user