homebrew-core/Formula/git-quick-stats.rb
2018-12-22 15:17:30 +11:00

19 lines
628 B
Ruby

class GitQuickStats < Formula
desc "Simple and efficient way to access statistics in git"
homepage "https://github.com/arzzen/git-quick-stats"
url "https://github.com/arzzen/git-quick-stats/archive/1.0.16.tar.gz"
sha256 "ef74a1cb45842ff75a37b6b5205d450385803513f1c0f46fceface48c053d650"
bottle :unneeded
def install
bin.install "git-quick-stats"
end
test do
system "git", "init"
assert_match "All branches (sorted by most recent commit)",
shell_output("#{bin}/git-quick-stats branchesByDate")
assert_match /^Invalid argument/, shell_output("#{bin}/git-quick-stats command", 1)
end
end