8d3e1f818e
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
22 lines
477 B
Ruby
22 lines
477 B
Ruby
require 'formula'
|
|
|
|
class RbenvGemset < Formula
|
|
url 'https://github.com/jamis/rbenv-gemset/tarball/v0.3.0'
|
|
homepage 'https://github.com/jamis/rbenv-gemset'
|
|
md5 '884d5ddcd4a9e9e88948a23c686e2725'
|
|
|
|
head 'https://github.com/jamis/rbenv-gemset.git'
|
|
|
|
depends_on 'rbenv'
|
|
|
|
def install
|
|
prefix.install Dir['*']
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
Run the following command to complete the installation of rbenv-gemset:
|
|
|
|
rbenv gemset install
|
|
EOS
|
|
end
|
|
end
|