blob: bce7684c9966ba87c4faa952f50355ddb05f1f42 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
 | class RbenvAliases < Formula
  homepage "https://github.com/tpope/rbenv-aliases"
  url "https://github.com/tpope/rbenv-aliases/archive/v1.0.1.tar.gz"
  sha1 "7fcfe5ea3011c5f9e00ad41d85bebc2d19869b61"
  head "https://github.com/tpope/rbenv-aliases.git"
  depends_on "rbenv"
  def install
    prefix.install Dir["*"]
  end
  test do
    assert shell_output("rbenv hooks install").include? "autoalias.bash"
  end
end
 |