aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/rbenv-gemset.rb
blob: 3eb4c3f275470661d31382cfd88e1fb9634e6673 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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