blob: a35ba8a0e328174b2057f2fe5ad99fceeec99db0 (
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/1.2.0.tar.gz'
sha1 '69e1ddb34c35a901bbf5adc7d285f1d0a881356d'
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
|