95884bae22
Closes Homebrew/homebrew#42407. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
18 lines
504 B
Ruby
18 lines
504 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"
|
|
|
|
depends_on "rbenv"
|
|
|
|
def install
|
|
prefix.install Dir["*"]
|
|
end
|
|
|
|
test do
|
|
assert shell_output("rbenv hooks exec").include? "bundle-exec.bash"
|
|
end
|
|
end
|