closure-compiler-updated 1.1.18 → 1.1.19

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9af556f29d65e6852cbe726f91ecbd5aa79f5256c8b1a5295a4d139865d9f2e4
4
- data.tar.gz: b0afa7f472e8e473d2d7f44d5884fd3115ad7e6426ec3b577e0457086964449a
3
+ metadata.gz: 8e5d70055f906035c905549ca4b2375c135b4761c82da4a2486d5d0a848a611a
4
+ data.tar.gz: fcfa5086f52dc12dd59940031c06c659e1f551ae41aa5b351eed9bff76f1461d
5
5
  SHA512:
6
- metadata.gz: 162e9394a4e61e1abcccd3123e272cee8fb43ccdddcfb7b554e16ab0404b10c393ce6785da8f41449fc1c45bf2108d5968844d79f38505882fd8667578f3779e
7
- data.tar.gz: 6c57f8fabc5ad9eb66652ed9e918a65473c7c7fd7dc505fa489152e54a58c061cb1d285908158250e049a687e8db32b5cecc54d6350ba241e95b11630554b20a
6
+ metadata.gz: ba0bf7793252a5bd133fb57894cf45662d0c2c221edc998527fbe63415bc84c4bfdef95c5fa734ab6f9094082eb5a91b1bd4880d3781951f5816de2531d5cffd
7
+ data.tar.gz: 61e3446cecdeb9f6b29d969bfeba4d00ca261e4817b73e4d25d94775d92918bb1be6e657be8d56ad50bd23c062fd9f4dacb4493c386ccc2f9d29be970148650d
data/README.textile CHANGED
@@ -1,15 +1,15 @@
1
- h1. The Closure Compiler (as a Ruby Gem)
1
+ h1. The Closure Compiler (as a Ruby Gem). Updated.
2
2
 
3
- The *closure-compiler* gem is a svelte wrapper around the "Google Closure Compiler":https://developers.google.com/closure/compiler/ for JavaScript compression.
3
+ The *closure-compiler-updated* gem is a Ruby wrapper around the "Google Closure Compiler":https://developers.google.com/closure/compiler/ for JavaScript compression.
4
4
 
5
- Latest Version: *"1.1.17":https://rubygems.org/gems/closure-compiler*
5
+ Latest Version: *"1.1.19":https://rubygems.org/gems/closure-compiler-updated*
6
6
 
7
- The Closure Compiler's *2020-08-24* JAR-file (compiled from master) is included with the gem.
7
+ The Closure Compiler's *v20211107* JAR-file is included with the gem.
8
8
 
9
9
  h2. Installation
10
10
 
11
11
  <pre>
12
- sudo gem install closure-compiler
12
+ sudo gem install closure-compiler-updated
13
13
  </pre>
14
14
 
15
15
  h2. Usage
@@ -14,7 +14,8 @@ module Closure
14
14
 
15
15
  DEFAULT_OPTIONS = {
16
16
  :warning_level => 'QUIET',
17
- :language_in => 'ECMASCRIPT5'
17
+ :language_in => 'ECMASCRIPT5',
18
+ :language_out => 'ECMASCRIPT5'
18
19
  }
19
20
 
20
21
  # When you create a Compiler, pass in the flags and options.
File without changes
@@ -1,6 +1,6 @@
1
1
  module Closure
2
2
 
3
- VERSION = "1.1.18"
3
+ VERSION = "1.1.19"
4
4
 
5
5
  COMPILER_VERSION = "v20211107"
6
6
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: closure-compiler-updated
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.18
4
+ version: 1.1.19
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeremy Ashkenas