aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/rbenv-vars.rb
blob: 9b9d4ae9210ce5ebd2a2b712f58833814c1fe0a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class RbenvVars < Formula
  homepage "https://github.com/sstephenson/rbenv-vars"
  url "https://github.com/sstephenson/rbenv-vars/archive/v1.2.0.tar.gz"
  sha1 "8953cecac154fac96dc1e68b54d66a4c8b569e08"

  head "https://github.com/sstephenson/rbenv-vars.git"

  depends_on "rbenv"

  def install
    prefix.install Dir["*"]
  end

  test do
    assert shell_output("rbenv hooks exec").include? "rbenv-vars.bash"
  end
end