blob: 307e1ea9bba08bd31b262c581d1b0c4b29415280 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
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
|