blob: 079454cf23e3bcddfe09ca247e1053ba550b77d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'formula'
class RbenvVars < Formula
homepage 'https://github.com/sstephenson/rbenv-vars'
url 'https://github.com/sstephenson/rbenv-vars/tarball/v1.2.0'
sha1 '26a248f5a5f0da0cbb7ad154da8a908341951a10'
head 'https://github.com/sstephenson/rbenv-vars.git'
depends_on 'rbenv'
def install
prefix.install Dir['*']
end
end
|