closure-compiler 0.3.3 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -2,9 +2,9 @@ h1. The Closure Compiler (as a Ruby Gem)
2
2
 
3
3
  The *closure-compiler* gem is a svelte wrapper around the "Google Closure Compiler":http://code.google.com/closure/compiler/ for JavaScript compression.
4
4
 
5
- Latest Version: *"0.3.3":http://gemcutter.org/gems/closure-compiler*
5
+ Latest Version: *"1.0.0":http://gemcutter.org/gems/closure-compiler*
6
6
 
7
- The Closure Compiler's *2010-09-17* JAR-file is included with the gem, so you'll need *Java 6* installed in order to run the compiler.
7
+ The Closure Compiler's *2011-01-19* JAR-file is included with the gem.
8
8
 
9
9
  h2. Installation
10
10
 
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'closure-compiler'
3
- s.version = '0.3.3' # Keep version in sync with closure-compiler.rb
4
- s.date = '2010-9-28'
3
+ s.version = '1.0.0' # Keep version in sync with closure-compiler.rb
4
+ s.date = '2011-1-19'
5
5
 
6
6
  s.homepage = "http://github.com/documentcloud/closure-compiler/"
7
7
  s.summary = "Ruby Wrapper for the Google Closure Compiler"
@@ -1,8 +1,8 @@
1
1
  module Closure
2
2
 
3
- VERSION = "0.3.3"
3
+ VERSION = "1.0.0"
4
4
 
5
- COMPILER_VERSION = "20100917"
5
+ COMPILER_VERSION = "20110119"
6
6
 
7
7
  JAVA_COMMAND = 'java'
8
8
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: closure-compiler
3
3
  version: !ruby/object:Gem::Version
4
- hash: 21
4
+ hash: 23
5
5
  prerelease: false
6
6
  segments:
7
+ - 1
7
8
  - 0
8
- - 3
9
- - 3
10
- version: 0.3.3
9
+ - 0
10
+ version: 1.0.0
11
11
  platform: ruby
12
12
  authors:
13
13
  - Jeremy Ashkenas
@@ -16,7 +16,7 @@ autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
18
 
19
- date: 2010-09-28 00:00:00 -04:00
19
+ date: 2011-01-19 00:00:00 -05:00
20
20
  default_executable:
21
21
  dependencies: []
22
22
 
@@ -32,7 +32,7 @@ files:
32
32
  - lib/closure/compiler.rb
33
33
  - lib/closure/popen.rb
34
34
  - lib/closure-compiler.rb
35
- - vendor/closure-compiler-20100917.jar
35
+ - vendor/closure-compiler-20110119.jar
36
36
  - closure-compiler.gemspec
37
37
  - README.textile
38
38
  - LICENSE