9c6f1142dc
Closes Homebrew/homebrew#38953. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
13 lines
313 B
Ruby
13 lines
313 B
Ruby
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
|