95884bae22
Closes Homebrew/homebrew#42407. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
16 lines
468 B
Ruby
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
|