diff options
author | Mike JS. Choi <mkchoi212@icloud.com> | 2018-01-02 12:28:24 -0600 |
---|---|---|
committer | Mike JS. Choi <mkchoi212@icloud.com> | 2018-01-02 12:28:24 -0600 |
commit | 1aac2a94efd6321cfac6c040488de53482438ec4 (patch) | |
tree | 21e0cc9be91640f44d2d6f82a8cd5ff0eff8ca4d | |
parent | 298d7e6d564e8322279cdd791388ca973ccb90d4 (diff) | |
parent | 86b9ee89c9990280df849349c10b43add8c79aac (diff) |
Merge branch 'master' of https://github.com/mkchoi212/fac
-rw-r--r-- | assets/fac.rb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/assets/fac.rb b/assets/fac.rb new file mode 100644 index 0000000..12c88b0 --- /dev/null +++ b/assets/fac.rb @@ -0,0 +1,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 |