2016-11-10 17:17:11 +00:00
|
|
|
class Minimesos < Formula
|
|
|
|
desc "Testing infrastructure for Mesos frameworks"
|
|
|
|
homepage "https://minimesos.org/"
|
2017-01-31 22:11:53 +00:00
|
|
|
url "https://github.com/ContainerSolutions/minimesos/archive/0.11.1.tar.gz"
|
|
|
|
sha256 "75b3416ec1fb56ba809e9766efcdb75ae35fa753a016ae9912ab6fb2f29075e8"
|
2016-11-10 17:17:11 +00:00
|
|
|
|
|
|
|
bottle :unneeded
|
|
|
|
|
|
|
|
depends_on "docker"
|
|
|
|
|
|
|
|
def install
|
|
|
|
bin.install "bin/minimesos"
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
2017-01-31 22:11:53 +00:00
|
|
|
assert_match "Docker", shell_output("#{bin}/minimesos --help 2>&1", 1)
|
2016-11-10 17:17:11 +00:00
|
|
|
end
|
|
|
|
end
|