homebrew-core/Formula/rbenv.rb
Xu Cheng f129cb6f0d modernize and add test for rbenv and its family
Closes Homebrew/homebrew#36496.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-02-03 16:20:42 +00:00

25 lines
725 B
Ruby

class Rbenv < Formula
homepage "https://github.com/sstephenson/rbenv"
url "https://github.com/sstephenson/rbenv/archive/v0.4.0.tar.gz"
sha1 "825ceec55805b8bb80a6d6003fd3cef824d7ff14"
head "https://github.com/sstephenson/rbenv.git"
def install
inreplace "libexec/rbenv", "/usr/local", HOMEBREW_PREFIX
prefix.install Dir["*"]
end
def caveats; <<-EOS.undent
To use Homebrew's directories rather than ~/.rbenv add to your profile:
export RBENV_ROOT=#{var}/rbenv
To enable shims and autocompletion add to your profile:
if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi
EOS
end
test do
shell_output("eval \"$(#{bin}/rbenv init -)\" && rbenv versions")
end
end