22 lines
550 B
Ruby
22 lines
550 B
Ruby
class RbenvBundler < Formula
|
|
desc "Makes shims aware of bundle install paths"
|
|
homepage "https://github.com/carsomyr/rbenv-bundler"
|
|
url "https://github.com/carsomyr/rbenv-bundler/archive/1.00.tar.gz"
|
|
sha256 "84f5456b1ac8ea4554db8fa17c99b5f5d2eafcd647f85088a5d36e805c092ba7"
|
|
license "Apache-2.0"
|
|
revision 1
|
|
head "https://github.com/carsomyr/rbenv-bundler.git"
|
|
|
|
bottle :unneeded
|
|
|
|
depends_on "rbenv"
|
|
|
|
def install
|
|
prefix.install Dir["*"]
|
|
end
|
|
|
|
test do
|
|
assert_match "bundler.bash", shell_output("rbenv hooks exec")
|
|
end
|
|
end
|