homebrew-core/Formula/rbenv-communal-gems.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

16 lines
468 B
Ruby

class RbenvCommunalGems < Formula
desc "Share gems across multiple rbenv Ruby installs"
homepage "https://github.com/tpope/rbenv-communal-gems"
url "https://github.com/tpope/rbenv-communal-gems/archive/v1.0.1.tar.gz"
sha256 "99f1c0be6721e25037f964015cbd2622d70603ceeeaef58f040410ac3697d766"
depends_on "rbenv"
def install
prefix.install Dir["*"]
end
test do
assert shell_output("rbenv hooks install").include? "communal-gems.bash"
end
end