homebrew-core/Formula/brew-gem.rb
Andrew Janke 3ad9a0896f Change github /tarball/ URLs to /archive/ for formulae A-K
The `brew audit` check complains about the older /tarball/ URL scheme. Update
formulae to use the new /archive/ URL and update the SHA to match.

Closes Homebrew/homebrew#18813.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-03-28 21:02:11 -07:00

11 lines
258 B
Ruby

require 'formula'
class BrewGem < Formula
homepage 'https://github.com/josh/brew-gem'
url 'https://github.com/josh/brew-gem/archive/v0.1.2.tar.gz'
sha1 'fccccc5e7f00cbd69ff66c3f9a0e365bfb39641e'
def install
bin.install 'bin/brew-gem'
end
end