homebrew-core/Formula/pidcat.rb
Jake Wharton e9603946aa pidcat 2.0.0
Update Pidcat to 2.0.0

Changes: https://github.com/JakeWharton/pidcat/blob/master/CHANGELOG.md#version-200-2015-05-25

Closes Homebrew/homebrew#40082.

Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
2015-05-26 05:08:25 +01:00

16 lines
447 B
Ruby

require "formula"
class Pidcat < Formula
homepage "https://github.com/JakeWharton/pidcat"
head "https://github.com/JakeWharton/pidcat.git"
url "https://github.com/JakeWharton/pidcat/archive/2.0.0.tar.gz"
sha256 "4bb3d7bab7e124e355892ee9cf87de1d6f39bea201b03fce6449ca2486470656"
def install
bin.install "pidcat.py" => "pidcat"
end
test do
assert_match /^usage: pidcat/, shell_output("#{bin}/pidcat --help").strip
end
end