Skip to content

Commit a9833cd

Browse files
committed
new version 1.1.17
1 parent 984ab89 commit a9833cd

5 files changed

+6
-6
lines changed

README.textile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ h1. The Closure Compiler (as a Ruby Gem)
22

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

5-
Latest Version: *"1.1.14":https://rubygems.org/gems/closure-compiler*
5+
Latest Version: *"1.1.17":https://rubygems.org/gems/closure-compiler*
66

7-
The Closure Compiler's *2018-05-06* JAR-file is included with the gem.
7+
The Closure Compiler's *2020-08-24* JAR-file (compiled from master) is included with the gem.
88

99
h2. Installation
1010

closure-compiler.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
require File.join(File.dirname(__FILE__), 'lib', 'closure-compiler')
1+
require_relative 'lib/closure-compiler'
22

33
Gem::Specification.new do |s|
44
s.name = 'closure-compiler'

lib/closure-compiler-20180506.jar

-7.1 MB
Binary file not shown.

lib/closure-compiler-v20200824.jar

8.23 MB
Binary file not shown.

lib/closure-compiler.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module Closure
22

3-
VERSION = "1.1.14"
3+
VERSION = "1.1.17"
44

5-
COMPILER_VERSION = "20180506"
5+
COMPILER_VERSION = "v20200824"
66

77
JAVA_COMMAND = 'java'
88

@@ -12,4 +12,4 @@ module Closure
1212

1313
end
1414

15-
require 'closure/compiler'
15+
require_relative 'closure/compiler'

0 commit comments

Comments
 (0)