blob: 571dc4ac8a761b6040980a1c460f72ba7d8b93c3 (
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/jamis/rbenv-gemset'
  url 'https://github.com/jamis/rbenv-gemset/tarball/v0.3.0'
  sha1 '52e058e43a4a1395c3fe923365cee53d0977c41a'
  head 'https://github.com/jamis/rbenv-gemset.git'
  depends_on 'rbenv'
  def install
    prefix.install Dir['*']
  end
end
  |