2011-09-09 18:07:14 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class RbenvGemset < Formula
|
2011-11-04 20:57:58 +00:00
|
|
|
url 'https://github.com/jamis/rbenv-gemset/tarball/v0.3.0'
|
2011-09-09 18:07:14 +00:00
|
|
|
homepage 'https://github.com/jamis/rbenv-gemset'
|
2011-11-04 20:57:58 +00:00
|
|
|
md5 '884d5ddcd4a9e9e88948a23c686e2725'
|
2011-09-09 18:07:14 +00:00
|
|
|
|
|
|
|
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
|