blob: ebb6fd3bec45bda35ab80c6576a0b15b3dd5c770 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require 'formula'
class Gist < Formula
homepage 'https://github.com/defunkt/gist'
url 'https://github.com/defunkt/gist/archive/v3.1.0.tar.gz'
sha1 'ae524b79c2321779e2553a7847fab82f178e8ffc'
head 'https://github.com/defunkt/gist.git'
def install
rake "install", "prefix=#{prefix}"
end
test do
system "#{bin}/gist", '--version'
end
end
|