homebrew-core/Formula/rbenv-gemset.rb
Andrew Janke c8d2d41c1d Change github /tarball/ URLs to /archive/ for formulae L-Z
This takes care of a `brew audit` complaint.

Closes Homebrew/homebrew#18828.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-03-29 14:59:28 -07:00

15 lines
343 B
Ruby

require 'formula'
class RbenvGemset < Formula
homepage 'https://github.com/jamis/rbenv-gemset'
url 'https://github.com/jamis/rbenv-gemset/archive/v0.3.0.tar.gz'
sha1 '9c40f7efc3fea6e455adc3971d8e3ddd191e7560'
head 'https://github.com/jamis/rbenv-gemset.git'
depends_on 'rbenv'
def install
prefix.install Dir['*']
end
end