2012-08-28 11:30:27 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class RbenvBundler < Formula
|
|
|
|
homepage 'https://github.com/carsomyr/rbenv-bundler'
|
2013-01-11 10:49:15 +00:00
|
|
|
url 'https://github.com/carsomyr/rbenv-bundler/tarball/0.95'
|
2013-01-21 09:43:29 +00:00
|
|
|
sha1 '68f34b7d9e123d93f51fe5fcca585fdaf3cd31e7'
|
2012-08-28 11:30:27 +00:00
|
|
|
|
|
|
|
depends_on 'rbenv'
|
|
|
|
|
|
|
|
def install
|
|
|
|
prefix.install Dir['*']
|
2012-10-22 16:39:45 +00:00
|
|
|
|
2013-01-11 10:48:36 +00:00
|
|
|
ln_sf opt_prefix, "#{HOMEBREW_PREFIX}/var/lib/rbenv/plugins/#{name}"
|
2012-10-22 16:39:45 +00:00
|
|
|
end
|
2013-01-23 09:15:03 +00:00
|
|
|
|
|
|
|
def caveats; <<-EOS.undent
|
|
|
|
rbenv-bundler may cause problems with rbenv including significant slowdown
|
|
|
|
of shell initialisation and rehashing.
|
|
|
|
|
|
|
|
Please report any issues with rbenv after installing this plugin here:
|
|
|
|
https://github.com/carsomyr/rbenv-bundler/issues/new
|
|
|
|
EOS
|
|
|
|
end
|
2012-08-28 11:30:27 +00:00
|
|
|
end
|