summaryrefslogtreecommitdiffstats
path: root/Formula/fac.rb
blob: 12c88b012f24a8a0d2ef079129cea5d103b76e55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class Fac < Formula
  desc "Command line User Interface for fixing git conflicts"
  homepage "https://github.com/mkchoi212/fac"
  url "https://github.com/mkchoi212/fac/releases/download/v1.0.0/fac_1.0.0_darwin_amd64.tar.gz"
  version "1.0.0"
  sha256 "5e3efea7bed1d35a1bec25bb5af1d2c03e1c8fe0ece4a9fe23c180ce7f060066"
  
  depends_on "git"
  depends_on "go"

  def install
    bin.install "fac"
  end

  test do
    
  end
end