19 lines
463 B
Ruby
19 lines
463 B
Ruby
|
class Minimesos < Formula
|
||
|
desc "Testing infrastructure for Mesos frameworks"
|
||
|
homepage "https://minimesos.org/"
|
||
|
url "https://github.com/ContainerSolutions/minimesos/archive/0.10.2.tar.gz"
|
||
|
sha256 "16b198078c9384426f8849b08e92e173816c4d6626331bc6569aa5de89dffbdd"
|
||
|
|
||
|
bottle :unneeded
|
||
|
|
||
|
depends_on "docker"
|
||
|
|
||
|
def install
|
||
|
bin.install "bin/minimesos"
|
||
|
end
|
||
|
|
||
|
test do
|
||
|
assert_match "Docker", shell_output("#{bin}/minimesos --help 2>&1", 125)
|
||
|
end
|
||
|
end
|