homebrew-core/Formula/aha.rb
2015-01-26 22:19:52 -08:00

22 lines
613 B
Ruby
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

class Aha < Formula
homepage "https://github.com/theZiz/aha"
url "https://github.com/theZiz/aha/archive/0.4.8.tar.gz"
sha1 "45d91e1cda8663e8bf0c5fa8b94e4d2290aa9895"
bottle do
cellar :any
sha1 "93856bbcf2cd6b169f7a21d9b1a242c0bc031c7e" => :yosemite
sha1 "80a16f10a5c7417916f64e0df12b072baf29ba03" => :mavericks
sha1 "d756f3be34861bc510e3182cc406e099d857bdf9" => :mountain_lion
end
def install
system "make"
bin.install "aha"
end
test do
out = pipe_output(bin/"aha", "rainpill")
assert_match /color:purple;">rain.*color:blue;">pill/, out
end
end