homebrew-core/Formula/rbenv-whatis.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

15 lines
321 B
Ruby

class RbenvWhatis < Formula
homepage "https://github.com/rkh/rbenv-whatis"
url "https://github.com/rkh/rbenv-whatis/archive/v1.0.0.tar.gz"
sha1 "8c802d8e2bba66d0c87c62c9d0b887beb52b1de4"
depends_on "rbenv"
def install
prefix.install Dir["*"]
end
test do
system "rbenv", "whatis", "2.0"
end
end