19 lines
522 B
Ruby
19 lines
522 B
Ruby
class RbenvBinstubs < Formula
|
|
desc "Make rbenv aware of bundler binstubs"
|
|
homepage "https://github.com/ianheggie/rbenv-binstubs"
|
|
url "https://github.com/ianheggie/rbenv-binstubs/archive/v1.4.tar.gz"
|
|
sha256 "2d8fcb626d1ff47dc490d459999b5779802c3a0b0a319fd33750d63590beacb6"
|
|
head "https://github.com/ianheggie/rbenv-binstubs.git"
|
|
|
|
bottle :unneeded
|
|
|
|
depends_on :rbenv
|
|
|
|
def install
|
|
prefix.install Dir["*"]
|
|
end
|
|
|
|
test do
|
|
assert_match "rbenv-binstubs.bash", shell_output("rbenv hooks exec")
|
|
end
|
|
end
|