88779ade49
Closes Homebrew/homebrew#14653.
12 lines
309 B
Ruby
12 lines
309 B
Ruby
require 'formula'
|
|
|
|
class Gist < Formula
|
|
homepage 'https://github.com/defunkt/gist'
|
|
url 'https://github.com/defunkt/gist/tarball/v3.1.0'
|
|
sha1 '3271be7d41ac545afd17772652dda7adc7c90d7a'
|
|
head 'https://github.com/defunkt/gist.git'
|
|
|
|
def install
|
|
system "rake", "install", "prefix=#{prefix}"
|
|
end
|
|
end
|