Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to Closure Compiler 20190709 #53

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.textile
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ h1. The Closure Compiler (as a Ruby Gem)

The *closure-compiler* gem is a svelte wrapper around the "Google Closure Compiler":https://developers.google.com/closure/compiler/ for JavaScript compression.

Latest Version: *"1.1.14":https://rubygems.org/gems/closure-compiler*
Latest Version: *"1.1.15":https://rubygems.org/gems/closure-compiler*

The Closure Compiler's *2018-05-06* JAR-file is included with the gem.
The Closure Compiler's *2019-07-09* JAR-file is included with the gem.

h2. Installation

Expand Down
2 changes: 1 addition & 1 deletion closure-compiler.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ require File.join(File.dirname(__FILE__), 'lib', 'closure-compiler')
Gem::Specification.new do |s|
s.name = 'closure-compiler'
s.version = Closure::VERSION
s.date = '2018-05-31'
s.date = '2019-07-24'
s.license = 'Apache-2.0'

s.homepage = "http://github.com/documentcloud/closure-compiler/"
Expand Down
Binary file renamed lib/closure-compiler-20180506.jar → lib/closure-compiler-v20190709.jar
100755 → 100644
Binary file not shown.
4 changes: 2 additions & 2 deletions lib/closure-compiler.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module Closure

VERSION = "1.1.14"
VERSION = "1.1.15"

COMPILER_VERSION = "20180506"
COMPILER_VERSION = "v20190709"

JAVA_COMMAND = 'java'

Expand Down