30 lines
877 B
Ruby
30 lines
877 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.4.2-full.tar.gz"
|
|
sha256 "03abce899a6752069e0eff49c0bded3c71635bf3bcbb8b277c80ced029e5ffac"
|
|
|
|
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.undent
|
|
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
|