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'
url 'https://github.com/defunkt/gist/archive/v4.1.1.tar.gz'
sha1 '47c9708acd56fb2e7cd463b607a5dd12b9a77235'
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