blob: 07286ec0559653030930b507fdf3346d3c79520e (
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/tarball/1.0.0'
sha1 '3b5b13830a4afcc1480895c94596827df4ae1899'
def install
system "make"
bin.install "wrk"
end
def test
system "#{bin}/wrk -c 1 -r 1 -t 1 http://www.github.com/"
end
end
|