blob: e7a1ff5b3ef3bac60e58f948254295f7bc5f2dbf (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
require 'formula'
class Gist <Formula
url 'http://github.com/defunkt/gist/tarball/v1.1.1'
homepage 'http://github.com/defunkt/gist'
md5 'a1288387245cee6b1605d6756a2dac3b'
def install
system "rake", "install", "prefix=#{prefix}"
end
end
|