blob: 37b5c32080ca8c2c55f6ecdde2259550157808f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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['*']
rbenv_plugins = "#{HOMEBREW_PREFIX}/var/lib/rbenv/plugins"
mkdir_p rbenv_plugins
ln_sf opt_prefix, "#{rbenv_plugins}/#{name}"
end
end
|