diff options
| author | Chris Moore | 2012-08-28 07:30:27 -0400 |
|---|---|---|
| committer | Adam Vandenberg | 2012-08-31 19:53:44 -0700 |
| commit | 5d5939a205773cd68d04d848bb58bc32b29cc516 (patch) | |
| tree | 1f452a69c9bc0a5c6f1fe5e33a688fe6342a9777 /Library | |
| parent | 4ef158906312451f267821e287a2a38e8ee7343e (diff) | |
| download | homebrew-5d5939a205773cd68d04d848bb58bc32b29cc516.tar.bz2 | |
rbenv-bundler 0.94
rbenv-bundler is an rbenv plugin that makes shims aware of bundle
installation paths
Closes #14496.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/rbenv-bundler.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/rbenv-bundler.rb b/Library/Formula/rbenv-bundler.rb new file mode 100644 index 000000000..9e76594c0 --- /dev/null +++ b/Library/Formula/rbenv-bundler.rb @@ -0,0 +1,13 @@ +require 'formula' + +class RbenvBundler < Formula + homepage 'https://github.com/carsomyr/rbenv-bundler' + url 'https://github.com/carsomyr/rbenv-bundler/tarball/0.94' + sha1 '73b1aa192f22571b38d4e110d76f4138c5233c8f' + + depends_on 'rbenv' + + def install + prefix.install Dir['*'] + end +end |
