homebrew-core/Formula/git-cal.rb
2015-06-05 14:47:57 +01:00

19 lines
461 B
Ruby

require 'formula'
class GitCal < Formula
desc "GitHub-like contributions calendar but on the command-line"
homepage 'https://github.com/k4rthik/git-cal'
url 'https://github.com/k4rthik/git-cal/archive/v0.9.1.tar.gz'
sha1 '74c70107c9580c0455e01414ccae7333a746bca1'
def install
bin.install 'git-cal'
end
test do
# git-cal fails when run outside of a git repo.
HOMEBREW_REPOSITORY.cd do
system "#{bin}/git-cal"
end
end
end