aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/aha.rb
blob: 3b8b4348f14ebfabed98f7ce55f4253aab742020 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require "formula"

class Aha < Formula
  homepage "https://github.com/theZiz/aha"
  url "https://github.com/theZiz/aha/archive/0.4.7.2.tar.gz"
  sha1 "09933fddb02b3129a690eb3d7d140edb97ac0627"

  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