blob: 52477389bcad32926462e9622c16aa7f077136db (
plain)
1
2
3
4
5
6
7
8
9
10
11
  | 
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
  |