18 lines
446 B
Ruby
18 lines
446 B
Ruby
class Httpstat < Formula
|
|
desc "Curl statistics made simple"
|
|
homepage "https://github.com/reorx/httpstat"
|
|
url "https://github.com/reorx/httpstat/archive/1.3.1.tar.gz"
|
|
sha256 "7bfaa0428fe806ad4a68fc2db0aedf378f2e259d53f879372835af4ef14a6d41"
|
|
license "MIT"
|
|
|
|
bottle :unneeded
|
|
|
|
def install
|
|
bin.install "httpstat.py" => "httpstat"
|
|
end
|
|
|
|
test do
|
|
assert_match "HTTP", shell_output("#{bin}/httpstat https://github.com")
|
|
end
|
|
end
|