homebrew-core/Formula/rbenv-bundle-exec.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

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