homebrew-core/Formula/git-tracker.rb
Steven Harman b246dd6452 git-tracker 1.5.0
Closes Homebrew/homebrew#17539.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-02-05 20:19:22 -08:00

17 lines
454 B
Ruby

require 'formula'
class GitTracker < Formula
homepage 'https://github.com/stevenharman/git_tracker'
url 'https://github.com/stevenharman/git_tracker/tarball/v1.5.0'
sha1 '55c751b04ce6b7bb30232fbc367924af2f352017'
head 'https://github.com/stevenharman/git_tracker.git'
def install
rake 'standalone:install', "prefix=#{prefix}"
end
def test
`#{bin}/git-tracker test-command`.chomp == 'git-tracker is here. How are you?'
end
end