homebrew-core/Formula/gist.rb
Conrad Irwin 85c3fe0b5a gist 4.0.3
Closes Homebrew/homebrew#19832.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-05-15 08:50:00 -07: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.0.3.tar.gz'
sha1 '4c88ac3550833154beab134d7ccc9ec8330ad281'
head 'https://github.com/defunkt/gist.git'
def install
rake "install", "prefix=#{prefix}"
end
test do
system "#{bin}/gist", '--version'
end
end