blob: 0dec738421e303bbbcdfb9601ed353c066124491 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require 'formula'
class Wrk < Formula
homepage 'https://github.com/wg/wrk'
url 'https://github.com/wg/wrk/archive/2.0.0.tar.gz'
sha1 'f4d3562ef41b8470e368b542686af3f42618aa67'
def install
system "make"
bin.install "wrk"
end
test do
system *%W{#{bin}/wrk -c 1 -r 1 -t 1 http://www.github.com/}
end
end
|