32 lines
1.0 KiB
Ruby
32 lines
1.0 KiB
Ruby
class Webify < Formula
|
|
desc "Wrapper for shell commands as web services"
|
|
homepage "https://github.com/beefsack/webify"
|
|
url "https://github.com/beefsack/webify/archive/v1.5.0.tar.gz"
|
|
sha256 "66805a4aef4ed0e9c49e711efc038e2cd4e74aa2dc179ea93b31dc3aa76e6d7b"
|
|
license "MIT"
|
|
head "https://github.com/beefsack/webify.git"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "284df018b49ddc0c2a3b8e0800c1997abebee41d198edbd7d725be2f88a8c5e4" => :big_sur
|
|
sha256 "7b6543358b1c92e8e8cc71584ed52802a039c9327edc839dcc75216fbd23558c" => :catalina
|
|
sha256 "8a58b27bcb9d6f9cd611b8f7dfb6192f617854cfcaf8638b388f6dd88ec40f70" => :mojave
|
|
sha256 "9701f9952fb05880c48c5ca26d14807cf324c2210d4b45d0fb5408243d8d76cc" => :high_sierra
|
|
end
|
|
|
|
depends_on "go" => :build
|
|
|
|
def install
|
|
system "go", "build", *std_go_args
|
|
end
|
|
|
|
test do
|
|
port = free_port
|
|
fork do
|
|
exec bin/"webify", "-addr=:#{port}", "cat"
|
|
end
|
|
sleep 1
|
|
assert_equal "Homebrew", shell_output("curl -s -d Homebrew http://localhost:#{port}")
|
|
end
|
|
end
|