homebrew-core/Formula/vert.x.rb
Clement Escoffier 55a51cde00 vert.x 3.8.2
Closes #44916.

Signed-off-by: Rui Chen <rchen@meetup.com>
2019-10-04 17:38:20 -04:00

30 lines
891 B
Ruby

class VertX < Formula
desc "Toolkit for building reactive applications on the JVM"
homepage "https://vertx.io/"
url "https://bintray.com/vertx/downloads/download_file?file_path=vert.x-3.8.2-full.tar.gz"
sha256 "22b9ad3e4656112b55c911dcf777ef93b78af2517152f0a84dc8ceb0271ca58d"
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