2014-08-21 07:25:45 +00:00
|
|
|
require "formula"
|
2009-11-13 03:02:29 +00:00
|
|
|
|
2010-11-06 03:35:00 +00:00
|
|
|
class Gist < Formula
|
2014-08-21 07:25:45 +00:00
|
|
|
homepage "https://github.com/defunkt/gist"
|
|
|
|
url "https://github.com/defunkt/gist/archive/v4.3.0.tar.gz"
|
|
|
|
sha1 "7eceb93d4d5f43da32201607409ee3aa196dcf7f"
|
|
|
|
head "https://github.com/defunkt/gist.git"
|
2010-02-28 23:03:46 +00:00
|
|
|
|
2009-11-13 03:02:29 +00:00
|
|
|
def install
|
2013-01-27 22:38:03 +00:00
|
|
|
rake "install", "prefix=#{prefix}"
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
2014-08-21 07:25:45 +00:00
|
|
|
system "#{bin}/gist", "--version"
|
2009-11-13 03:02:29 +00:00
|
|
|
end
|
|
|
|
end
|