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.0.3.tar.gz'
sha1 '4c88ac3550833154beab134d7ccc9ec8330ad281'
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