28 lines
809 B
Ruby
28 lines
809 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.3.tar.gz"
|
|
sha256 "5bbefdca878aab4a8c8a0c874c02a0a033cf4321121c9e006cb333d9bd7b6d52"
|
|
license "MIT"
|
|
revision 1
|
|
head "https://github.com/garybernhardt/serveit.git", branch: "master"
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, all: "e17a21fd5705de1b2e96656ad703f51c8f1781601f295ff7028cfc859bd0ca44"
|
|
end
|
|
|
|
def install
|
|
bin.install "serveit"
|
|
end
|
|
|
|
test do
|
|
port = free_port
|
|
pid = fork { exec bin/"serveit", "-p", port.to_s }
|
|
sleep 2
|
|
assert_match(/Listing for/, shell_output("curl localhost:#{port}"))
|
|
ensure
|
|
Process.kill("SIGINT", pid)
|
|
Process.wait(pid)
|
|
end
|
|
end
|