aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/rbenv-communal-gems.rb
blob: 5f62403dfa3d958b9532d728fa0d213489e91e97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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