homebrew-core/Formula/plenv.rb
tokuhirom c73fa70d64 plenv 1.4.7
Closes Homebrew/homebrew#18769.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-03-27 08:56:48 -07:00

19 lines
455 B
Ruby

require 'formula'
class Plenv < Formula
homepage 'https://github.com/tokuhirom/plenv'
url 'https://github.com/tokuhirom/plenv/tarball/1.4.7'
sha1 '04884fdf5a4e4e72543203038bd9e75ee2974bdd'
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