aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/rbenv-gemset.rb
blob: b00a2143cbce2a1e939ee071b7f5703de683e0ef (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.6.tar.gz'
  sha1 'fc3e190e416d58a4184cab49a626f3606d975427'

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

  depends_on 'rbenv'

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