homebrew-core/Formula/rbenv-aliases.rb
Juan Ignacio Donoso 0016fe0494 rbenv-aliases 1.1.0
Closes Homebrew/homebrew#48711.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2016-02-01 18:37:36 +00:00

19 lines
500 B
Ruby

class RbenvAliases < Formula
desc "Make aliases for Ruby versions"
homepage "https://github.com/tpope/rbenv-aliases"
url "https://github.com/tpope/rbenv-aliases/archive/v1.1.0.tar.gz"
sha256 "12e89bc4499e85d8babac2b02bc8b66ceb0aa3f8047b26728a3eca8a6030273d"
head "https://github.com/tpope/rbenv-aliases.git"
bottle :unneeded
depends_on :rbenv
def install
prefix.install Dir["*"]
end
test do
assert_match "autoalias.bash", shell_output("rbenv hooks install")
end
end