blob: 1596eeb14bdffbf850a707e9dacb989f47de8376 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
require 'formula'
class Rbenv < Formula
homepage 'https://github.com/sstephenson/rbenv'
url 'https://github.com/sstephenson/rbenv/tarball/v0.3.0'
md5 '26e00faff3ba04fdeeeecb0bfbf96351'
head 'https://github.com/sstephenson/rbenv.git'
def install
prefix.install Dir['*']
end
def caveats; <<-EOS.undent
To enable shims and autocompletion, add rbenv init to your profile:
if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi
EOS
end
end
|