homebrew-core/Formula/rbenv-communal-gems.rb
2015-06-05 14:47:57 +01:00

16 lines
442 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"
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