homebrew-core/Formula/vert.x.rb
2018-02-13 11:26:03 +01:00

30 lines
869 B
Ruby

class VertX < Formula
desc "Toolkit for building reactive applications on the JVM"
homepage "http://vertx.io/"
url "https://dl.bintray.com/vertx/downloads/vert.x-3.5.1-full.tar.gz"
sha256 "a0809a04e62060d737f1784bdbbfd08e9baf38eb7931cfc69e8136f8da5fb3fd"
bottle :unneeded
depends_on :java => "1.8+"
def install
rm_f Dir["bin/*.bat"]
libexec.install %w[bin conf lib]
bin.install_symlink "#{libexec}/bin/vertx"
end
test do
(testpath/"HelloWorld.java").write <<~EOS
import io.vertx.core.AbstractVerticle;
public class HelloWorld extends AbstractVerticle {
public void start() {
System.out.println("Hello World!");
vertx.close();
System.exit(0);
}
}
EOS
output = shell_output("#{bin}/vertx run HelloWorld.java")
assert_equal "Hello World!\n", output
end
end