blob: 182c7b0e47ca946afd9368468b81c53be2671c89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'formula'
class RbenvGemset < Formula
homepage 'https://github.com/jf/rbenv-gemset'
url 'https://github.com/jf/rbenv-gemset/archive/v0.5.4.tar.gz'
sha1 '2f053ec748f1238280a6473732a9bdb0ca305033'
head 'https://github.com/jf/rbenv-gemset.git'
depends_on 'rbenv'
def install
prefix.install Dir['*']
end
end
|