blob: 60fe156162aa1b0d8bd2fdc1782340fdcd1386e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
class GitOctopus < Formula
homepage "https://github.com/lesfurets/git-octopus"
url "https://github.com/lesfurets/git-octopus/archive/v1.0.tar.gz"
sha256 "c83ab4aa3d8ec770f4f05619239a7852c871216a108b4e287c13efb10e3db5db"
def install
bin.install "bin/git-octopus"
man1.install "man/man1/git-octopus.1"
end
test do
system "#{bin}/git-octopus"
end
end
|