Files
discourse/Brewfile
T

20 lines
474 B
Ruby
Raw Normal View History

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