diff options
| author | tokuhirom | 2013-01-13 12:30:53 +0900 |
|---|---|---|
| committer | Adam Vandenberg | 2013-01-17 20:27:01 -0800 |
| commit | 059a0a98f93c208c604359cf223a126ca36eb362 (patch) | |
| tree | c6e0fa40941230de4b117580ada22caa98568efb | |
| parent | d28df46634e01a959f13cef6b35de4831a9c321a (diff) | |
| download | homebrew-059a0a98f93c208c604359cf223a126ca36eb362.tar.bz2 | |
plenv 1.0.8
Closes #17049.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/plenv.rb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Library/Formula/plenv.rb b/Library/Formula/plenv.rb new file mode 100644 index 000000000..90d97b590 --- /dev/null +++ b/Library/Formula/plenv.rb @@ -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 |
