blob: bfd46084561f0579f034246529757074bf9196ff (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
 | class RbenvGemset < Formula
  homepage "https://github.com/jf/rbenv-gemset"
  url "https://github.com/jf/rbenv-gemset/archive/v0.5.8.tar.gz"
  sha1 "bd06efff2fcfaeb47bd32dc1658e4aae5d8a0619"
  head "https://github.com/jf/rbenv-gemset.git"
  depends_on "rbenv"
  def install
    prefix.install Dir["*"]
  end
  test do
    assert shell_output("rbenv hooks exec").include? "gemset.bash"
  end
end
 |