d9698f652b
Closes Homebrew/homebrew#18783. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
11 lines
258 B
Ruby
11 lines
258 B
Ruby
require 'formula'
|
|
|
|
class CodaCli < Formula
|
|
homepage 'http://justinhileman.info/coda-cli/'
|
|
url 'https://github.com/bobthecow/coda-cli/archive/v1.0.5.tar.gz'
|
|
sha1 '60b1b9c1bfe9602f5140dd3ea4b4e6ae2c51acf3'
|
|
|
|
def install
|
|
bin.install 'coda'
|
|
end
|
|
end
|