homebrew-core/Formula/gist.rb
Conrad Irwin 59bbcd2dfe gist 4.1.1
Closes Homebrew/homebrew#22383.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2013-09-07 22:06:08 +01:00

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.1.tar.gz'
sha1 '47c9708acd56fb2e7cd463b607a5dd12b9a77235'
head 'https://github.com/defunkt/gist.git'
def install
rake "install", "prefix=#{prefix}"
end
test do
system "#{bin}/gist", '--version'
end
end