Permalink
Cannot retrieve contributors at this time
32 lines (28 sloc)
1.83 KB
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class GitTracker < Formula | |
desc "Integrate Pivotal Tracker into your Git workflow" | |
homepage "https://github.com/stevenharman/git_tracker" | |
url "https://github.com/stevenharman/git_tracker/archive/v2.0.0.tar.gz" | |
sha256 "ec0a8d6dd056b8ae061d9ada08f1cc2db087e13aaecf4e0d150c1808e0250504" | |
license "MIT" | |
head "https://github.com/stevenharman/git_tracker.git", branch: "main" | |
bottle do | |
sha256 cellar: :any_skip_relocation, arm64_big_sur: "f74c420720d35b85637c46102e5c897f099b7b0e049fb9114e757604c54d2da1" | |
sha256 cellar: :any_skip_relocation, big_sur: "cfb5a8706d8c08df443ae14911f6fded730dd1e5c3df7598e56ce110a74eea04" | |
sha256 cellar: :any_skip_relocation, catalina: "4bfd3a9d45ba7fa4eb83c27efc7d56d4ceae11c2fcd51817d32024b05633a8e8" | |
sha256 cellar: :any_skip_relocation, mojave: "1b4a0022514c92d8aa724987024f38932e2dd897ffb85238e057977929d729c3" | |
sha256 cellar: :any_skip_relocation, high_sierra: "b99c9fa3e5e35a59659091162620299a1f39f6e36b25e05e71cdc2989157d66d" | |
sha256 cellar: :any_skip_relocation, sierra: "38f5240121fa53c038034ea9d0ce639f49c6df241727cbc5fbbd6acb48c60ea7" | |
sha256 cellar: :any_skip_relocation, el_capitan: "beba888de6c1dad6b4069be93ad1029ce70c24cc241c5b930c6aaf541fd11c4d" | |
sha256 cellar: :any_skip_relocation, yosemite: "beba888de6c1dad6b4069be93ad1029ce70c24cc241c5b930c6aaf541fd11c4d" | |
sha256 cellar: :any_skip_relocation, x86_64_linux: "b48f605b2021cb869ada9958af24430b6fad63b2b6eddd3accc57e2930666ca0" | |
sha256 cellar: :any_skip_relocation, all: "d010189ba8fe4ce89198ee964ce6d86d2ac95e63d2ef199847379e7a26d79d32" | |
end | |
uses_from_macos "ruby" | |
def install | |
system "rake", "standalone:install", "prefix=#{prefix}" | |
end | |
test do | |
output = shell_output("#{bin}/git-tracker help") | |
assert_match(/git-tracker \d+(\.\d+)* is installed\./, output) | |
end | |
end |