homebrew-core/Formula/rbenv-gemset.rb
Andrew Marshall 285f119ff2 rbenv-gemset 0.2.1
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-09-25 09:22:37 -07:00

20 lines
425 B
Ruby

require 'formula'
class RbenvGemset < Formula
url 'https://github.com/jamis/rbenv-gemset/tarball/v0.2.1'
homepage 'https://github.com/jamis/rbenv-gemset'
md5 '21d6a809ea2232164a570b1fff13e8e4'
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