aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ghi.rb
blob: 60673ddab2a2a9b56db004796c990287afd05feb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'formula'

class Ghi < Formula
  homepage 'https://github.com/stephencelis/ghi'
  url 'https://github.com/stephencelis/ghi/archive/0.9.0.20130912.zip'
  sha1 'c08baf9e6ac69131ee683725a27fc66dd0907a47'

  def install
    bin.install "ghi"
    man1.install "man/ghi.1"
  end

  test do
    system "#{bin}/ghi", "--version"
  end
end