de6a2cc613
The changes were made with the following shell command: for formula in $(grep -l 'desc "[Aa]n\?\s' Library/Formula/*.rb); do echo $formula vim -c '/desc "/s/[Aa]n\? //|normal f"gU2lZZ' $formula done Closes Homebrew/homebrew#42333. Signed-off-by: Xu Cheng <xucheng@me.com>
14 lines
410 B
Ruby
14 lines
410 B
Ruby
class Prettyping < Formula
|
|
desc "Wrapper to colorize and simplify ping's output"
|
|
homepage "https://denilsonsa.github.io/prettyping/"
|
|
url "https://github.com/denilsonsa/prettyping/archive/v1.0.0.tar.gz"
|
|
sha256 "02a4144ff2ab7d3e2c7915041225270e96b04ee97777be905d1146e76084805d"
|
|
|
|
def install
|
|
bin.install "prettyping"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/prettyping", "-c", "3", "127.0.0.1"
|
|
end
|
|
end
|