21 lines
544 B
Ruby
21 lines
544 B
Ruby
class GitFresh < Formula
|
|
desc "Utility to keep git repos fresh"
|
|
homepage "https://github.com/imsky/git-fresh"
|
|
url "https://github.com/imsky/git-fresh/archive/v1.13.0.tar.gz"
|
|
sha256 "7043aaf2bf66dade7d06ebcf96e5d368c4910c002b7b00962bd2bd24490ce2dc"
|
|
license "MIT"
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, all: "d795746e41935ed5e81b80b5ff9231e2f39ec2be5b1aa5e0972739955bbdf334"
|
|
end
|
|
|
|
def install
|
|
system "./install.sh", bin
|
|
man1.install "git-fresh.1"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/git-fresh", "-T"
|
|
end
|
|
end
|