1783c6153c
Closes Homebrew/homebrew#27776. Signed-off-by: Mike McQuaid <mike@mikemcquaid.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.6.tar.gz'
|
|
sha1 'fc3e190e416d58a4184cab49a626f3606d975427'
|
|
|
|
head 'https://github.com/jf/rbenv-gemset.git'
|
|
|
|
depends_on 'rbenv'
|
|
|
|
def install
|
|
prefix.install Dir['*']
|
|
end
|
|
end
|