homebrew-core/Formula/serveit.rb
Jason Karns 93da6e5af7 serveit 0.0.1 (new formula)
Closes Homebrew/homebrew#41112.

Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
2015-06-28 02:47:56 +01:00

24 lines
647 B
Ruby

class Serveit < Formula
desc "synchronous server and rebuilder of static content"
homepage "https://github.com/garybernhardt/serveit"
url "https://github.com/garybernhardt/serveit/archive/v0.0.1.tar.gz"
sha256 "8cf25c80ea9b9fe0383545d083e305f7723b6dec7e70d29a4e15016264861f49"
head "https://github.com/garybernhardt/serveit.git"
depends_on :ruby => "1.9"
def install
bin.install "serveit"
end
test do
begin
pid = fork { exec bin/"serveit" }
sleep 2
assert_match /Listing for/, shell_output("curl localhost:8000")
ensure
Process.kill("SIGINT", pid)
Process.wait(pid)
end
end
end