homebrew-core/Formula/gist.rb

23 lines
732 B
Ruby
Raw Normal View History

class Gist < Formula
desc "Command-line utility for uploading Gists"
2014-08-21 07:25:45 +00:00
homepage "https://github.com/defunkt/gist"
url "https://github.com/defunkt/gist/archive/v4.4.2.tar.gz"
sha256 "4f570c6c32f04f529d0195c7cad93a48c9a53b2b3a9e69f68b732cdf31d3c362"
2014-08-21 07:25:45 +00:00
head "https://github.com/defunkt/gist.git"
2015-06-25 18:01:06 +00:00
bottle do
cellar :any
2015-07-22 01:01:44 +00:00
sha256 "164ad1f9427b51c135bb57699abc9b8ab42a1210097db88fb09387e81ceaa46a" => :yosemite
sha256 "5342577ed510c43e1293e0b0571311dbde3cc17f6754a211adf3a471141a9119" => :mavericks
sha256 "fff6af8f6c17c308009a4496032059defb8355ca646317dc8961475d2ffe683c" => :mountain_lion
2015-06-25 18:01:06 +00:00
end
2009-11-13 03:02:29 +00:00
def install
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