homebrew-core/Formula/closure-compiler.rb
ilovezfs db73ec1671 closure-compiler 20170124
Closes #9360.

Signed-off-by: Tomasz Pajor <tomek@polishgeeks.com>
2017-01-28 08:53:28 +01:00

28 lines
853 B
Ruby

class ClosureCompiler < Formula
desc "JavaScript optimizing compiler"
homepage "https://github.com/google/closure-compiler"
url "https://search.maven.org/remotecontent?filepath=com/google/javascript/closure-compiler/v20170124/closure-compiler-v20170124.jar"
sha256 "44a5ce9aac2d0d8509991f85d3c11e2633fd1c3e2de12d901b2d82c05a742b3b"
bottle :unneeded
depends_on :java => "1.7+"
def install
libexec.install Dir["*"]
bin.write_jar_script libexec.children.first, "closure-compiler"
end
test do
(testpath/"test.js").write <<-EOS.undent
(function(){
var t = true;
return t;
})();
EOS
system bin/"closure-compiler",
"--js", testpath/"test.js",
"--js_output_file", testpath/"out.js"
assert_equal (testpath/"out.js").read.chomp, "(function(){return!0})();"
end
end