homebrew-core/Formula/gist.rb

17 lines
361 B
Ruby
Raw Normal View History

2009-11-13 03:02:29 +00:00
require 'formula'
class Gist < Formula
homepage 'https://github.com/defunkt/gist'
2014-03-10 17:25:43 +00:00
url 'https://github.com/defunkt/gist/archive/v4.2.1.tar.gz'
sha1 'a081ce290e601263c2e42cc3c584c2cd23f06951'
2011-05-27 05:02:55 +00:00
head 'https://github.com/defunkt/gist.git'
2009-11-13 03:02:29 +00:00
def install
rake "install", "prefix=#{prefix}"
end
test do
system "#{bin}/gist", '--version'
2009-11-13 03:02:29 +00:00
end
end