diff options
| author | David Christenson | 2014-07-24 17:04:59 -0600 |
|---|---|---|
| committer | Jack Nagel | 2014-07-24 20:58:41 -0500 |
| commit | f20997162a6363d73790bad5cd1d5bcb02ead493 (patch) | |
| tree | 49de609cbf95f311eaef1ed729137abcedfa8406 | |
| parent | ee189ab7198d08b80932beb7927a571bb2d4d5a4 (diff) | |
| download | homebrew-f20997162a6363d73790bad5cd1d5bcb02ead493.tar.bz2 | |
closure-compiler v20140625
Update to latest stable release, change single quotes to double.
Closes #31101.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
| -rw-r--r-- | Library/Formula/closure-compiler.rb | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Library/Formula/closure-compiler.rb b/Library/Formula/closure-compiler.rb index 6be5fd2a7..a4178a272 100644 --- a/Library/Formula/closure-compiler.rb +++ b/Library/Formula/closure-compiler.rb @@ -1,11 +1,11 @@ -require 'formula' +require "formula" class ClosureCompiler < Formula - homepage 'https://github.com/google/closure-compiler' - url 'https://github.com/google/closure-compiler/archive/closure-compiler-maven-v20140407.tar.gz' - sha1 '80eba20da24f2d7b9f9f45d97ca49deb2668ef03' + homepage "https://github.com/google/closure-compiler" + url "https://github.com/google/closure-compiler/archive/maven-release-v20140625.tar.gz" + sha1 "48b13a84963321a77f68e814e44399f16884b278" - head 'https://github.com/google/closure-compiler.git' + head "https://github.com/google/closure-compiler.git" depends_on :ant => :build @@ -13,7 +13,7 @@ class ClosureCompiler < Formula system "ant", "clean" system "ant" - libexec.install Dir['*'] - bin.write_jar_script libexec/'build/compiler.jar', 'closure-compiler' + libexec.install Dir["*"] + bin.write_jar_script libexec/"build/compiler.jar", "closure-compiler" end end |
