0d0c464fb9
Closes Homebrew/homebrew#26142. Signed-off-by: Brett Koonce <koonce@gmail.com>
15 lines
334 B
Ruby
15 lines
334 B
Ruby
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
|