a1cc282917
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
16 lines
361 B
Ruby
16 lines
361 B
Ruby
require 'formula'
|
|
|
|
class Gist < Formula
|
|
homepage 'https://github.com/defunkt/gist'
|
|
url 'https://github.com/defunkt/gist/archive/v4.1.3.tar.gz'
|
|
sha1 '592afe5f45f476f2d9129bcd250892c884c3664d'
|
|
head 'https://github.com/defunkt/gist.git'
|
|
|
|
def install
|
|
rake "install", "prefix=#{prefix}"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/gist", '--version'
|
|
end
|
|
end
|