19 lines
520 B
Ruby
19 lines
520 B
Ruby
class RbenvBundleExec < Formula
|
|
desc "Integrate rbenv and bundler"
|
|
homepage "https://github.com/maljub01/rbenv-bundle-exec"
|
|
url "https://github.com/maljub01/rbenv-bundle-exec/archive/v1.0.0.tar.gz"
|
|
sha256 "2da08cbb1d8edecd1bcf68005d30e853f6f948c54ddb07bada67762032445cf3"
|
|
head "https://github.com/maljub01/rbenv-bundle-exec.git"
|
|
|
|
bottle :unneeded
|
|
|
|
depends_on :rbenv
|
|
|
|
def install
|
|
prefix.install Dir["*"]
|
|
end
|
|
|
|
test do
|
|
assert_match "bundle-exec.bash", shell_output("rbenv hooks exec")
|
|
end
|
|
end
|