plenv 1.0.8

Closes Homebrew/homebrew#17049.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
tokuhirom 2013-01-13 12:30:53 +09:00 committed by Adam Vandenberg
parent 4b009790ac
commit ccb0c6c260

19
Formula/plenv.rb Normal file
View file

@ -0,0 +1,19 @@
require 'formula'
class Plenv < Formula
homepage 'https://github.com/tokuhirom/plenv'
url 'https://github.com/tokuhirom/plenv/tarball/1.0.8'
sha1 '9babaeb2af77609a00ccdbda5a22213d7c3529dc'
head 'https://github.com/tokuhirom/plenv.git'
def install
prefix.install 'bin', 'share'
end
def caveats; <<-EOS.undent
To enable shims add to your profile:
if which plenv > /dev/null; then eval "$(plenv init -)"; fi
EOS
end
end