homebrew-core/Formula/git-cal.rb

18 lines
403 B
Ruby
Raw Normal View History

require 'formula'
class GitCal < Formula
homepage 'https://github.com/k4rthik/git-cal'
url 'https://github.com/k4rthik/git-cal/archive/v0.9.tar.gz'
sha1 'dd4027e367382a8593cab4212d2c7882a7b37680'
def install
bin.install 'git-cal'
end
test do
# git-cal fails when run outside of a git repo, so
# switch to #{bin} before testing it.
system "cd #{bin}; #{bin}/git-cal"
end
end