homebrew-core/Formula/rbenv-gemset.rb
Drew Olson 8cff4365a2 New Formula: rbenv-gemset
Plugin for rbenv that adds basic gemset support.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2011-09-16 18:32:41 -05:00

20 lines
425 B
Ruby

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