blob: 1e537f15f0a31cf85d136c14ac0c869c63db3ee5 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
 | class CodaCli < Formula
  homepage "http://justinhileman.info/coda-cli/"
  url "https://github.com/bobthecow/coda-cli/archive/v1.0.5.tar.gz"
  sha256 "5ed407313a8d1fc6cc4d5b1acc14a80f7e6fad6146f2334de510e475955008b9"
  def install
    bin.install "coda"
  end
  test do
    system "#{bin}/coda", "-h"
  end
end
 |