homebrew-core/Formula/rbenv-binstubs.rb
Xu Cheng f129cb6f0d modernize and add test for rbenv and its family
Closes Homebrew/homebrew#36496.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-02-03 16:20:42 +00:00

17 lines
434 B
Ruby

class RbenvBinstubs < Formula
homepage "https://github.com/ianheggie/rbenv-binstubs"
url "https://github.com/ianheggie/rbenv-binstubs/archive/v1.4.tar.gz"
sha1 "7bea29d60e6b3870608c056c6f0ebf55bb8a150a"
head "https://github.com/ianheggie/rbenv-binstubs.git"
depends_on "rbenv"
def install
prefix.install Dir["*"]
end
test do
assert shell_output("rbenv hooks exec").include? "rbenv-binstubs.bash"
end
end