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