aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/rbenv-gemset.rb
blob: c78475974b91f0be6b36773dd2b556adf6304c67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'formula'

class RbenvGemset < Formula
  homepage 'https://github.com/jf/rbenv-gemset'
  url 'https://github.com/jf/rbenv-gemset/archive/v0.5.8.tar.gz'
  sha1 'bd06efff2fcfaeb47bd32dc1658e4aae5d8a0619'

  head 'https://github.com/jf/rbenv-gemset.git'

  depends_on 'rbenv'

  def install
    prefix.install Dir['*']
  end
end