2014-12-15 08:13:34 +00:00
|
|
|
class RbenvBundleExec < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Integrate rbenv and bundler"
|
2014-12-15 08:13:34 +00:00
|
|
|
homepage "https://github.com/maljub01/rbenv-bundle-exec"
|
|
|
|
url "https://github.com/maljub01/rbenv-bundle-exec/archive/v1.0.0.tar.gz"
|
|
|
|
sha1 "2094ce0ac8f53b500f35a1a1b47a654a42611a35"
|
|
|
|
|
|
|
|
head "https://github.com/maljub01/rbenv-bundle-exec.git"
|
|
|
|
|
|
|
|
depends_on "rbenv"
|
|
|
|
|
|
|
|
def install
|
|
|
|
prefix.install Dir["*"]
|
|
|
|
end
|
2015-02-03 12:08:28 +00:00
|
|
|
|
|
|
|
test do
|
|
|
|
assert shell_output("rbenv hooks exec").include? "bundle-exec.bash"
|
|
|
|
end
|
2014-12-15 08:13:34 +00:00
|
|
|
end
|