homebrew-core/Formula/rbenv-communal-gems.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
386 B
Ruby

class RbenvCommunalGems < Formula
homepage "https://github.com/tpope/rbenv-communal-gems"
url "https://github.com/tpope/rbenv-communal-gems/archive/v1.0.1.tar.gz"
sha1 "39360238e89f2d723409c3de2a4132f561de7bb9"
depends_on "rbenv"
def install
prefix.install Dir["*"]
end
test do
assert shell_output("rbenv hooks install").include? "communal-gems.bash"
end
end