Brewdler
Bundler for non-Ruby dependencies from Homebrew
Requirements
Homebrew is used for installing the dependencies, it only works on OS X and so does this gem.
brew tap is new feature in Homebrew 0.9, adds more GitHub repos to the list of available formulae.
Homebrew-cask is optional and used for installing Mac applications.
Install
You can install as a Homebrew tap:
$ brew tap Homebrew/brewdler
Usage
Create a Brewfile
in the root of your project:
$ touch Brewfile
Then list your Homebrew based dependencies in your Brewfile
:
tap 'caskroom/cask'
brew 'emacs', args: ['cocoa', 'srgb', 'with-gnutls']
brew 'redis'
brew 'mongodb'
brew 'sphinx'
brew 'imagemagick'
brew 'mysql'
cask 'google-chrome'
You can then easily install all of the dependencies with one of the following commands:
$ brew brewdle
Install via rubygems
The recommended way to use brewdler is via Homebrew tap but you can install it via RubyGems:
$ gem install brewdler
Then use it with the following command:
$ brewdle install
Note
Homebrew does not support installing specific versions of a library, only the most recent one so there is no good mechanism for storing installed versions in a .lock file.
If your software needs specific versions then perhaps you'll want to look at using Vagrant to better match your development and production environments.
(Or there is always MacPorts...)
Contributors
Over 10 different people have contributed to the project, you can see them all here: https://github.com/Homebrew/homebrew-brewdler/graphs/contributors
Development
Source hosted at GitHub.
Report Issues/Feature requests on GitHub Issues.
Tests can be ran with rake spec
Note on Patches/Pull Requests
- Fork the project.
- Make your feature addition or bug fix.
- Add tests for it. This is important so I don't break it in a future version unintentionally.
- Add documentation if necessary.
- Commit, do not mess with Rakefile, version, or history.
- Send a pull request. Bonus points for topic branches.
Copyright
Copyright (c) 2015 Andrew Nesbitt. See LICENSE for details.