blob: 90844de6c3a3e26e9cd57153065dd392d9bd75be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class Rbenv < Formula
url 'https://github.com/sstephenson/rbenv/tarball/v0.1.2'
homepage 'https://github.com/sstephenson/rbenv'
md5 '4f39199a353e350e3ca50a78de2fb73c'
head 'https://github.com/sstephenson/rbenv.git'
def install
prefix.install Dir['*']
end
end
|