closure-compiler 0.1.4 → 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
@@ -2,7 +2,7 @@ h1. The Closure Compiler (as a Ruby Gem)
2
2
 
3
3
  The *closure-compiler* gem is a super-thin wrapper around the "Google Closure Compiler":http://code.google.com/closure/compiler/ for JavaScript compression.
4
4
 
5
- The Closure Compiler's *2009-11-19* JAR-file is included with the gem, so you'll need *Java 6* installed in order to run the compiler.
5
+ The Closure Compiler's *2009-12-03* JAR-file is included with the gem, so you'll need *Java 6* installed in order to run the compiler.
6
6
 
7
7
  h2. Installation
8
8
 
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'closure-compiler'
3
- s.version = '0.1.4' # Keep version in sync with closure-compiler.rb
4
- s.date = '2009-11-22'
3
+ s.version = '0.1.5' # Keep version in sync with closure-compiler.rb
4
+ s.date = '2009-12-04'
5
5
 
6
6
  s.homepage = "http://github.com/documentcloud/closure-compiler/"
7
7
  s.summary = "Ruby Wrapper for the Google Closure Compiler"
@@ -2,9 +2,9 @@ require File.expand_path(File.dirname(__FILE__) + '/closure/compiler')
2
2
 
3
3
  module Closure
4
4
 
5
- VERSION = "0.1.4"
5
+ VERSION = "0.1.5"
6
6
 
7
- COMPILER_VERSION = "20091119"
7
+ COMPILER_VERSION = "20091203"
8
8
 
9
9
  JAVA_COMMAND = 'java'
10
10
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: closure-compiler
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeremy Ashkenas
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-11-22 00:00:00 -05:00
12
+ date: 2009-12-04 00:00:00 -05:00
13
13
  default_executable:
14
14
  dependencies: []
15
15
 
@@ -24,7 +24,7 @@ extra_rdoc_files: []
24
24
  files:
25
25
  - lib/closure/compiler.rb
26
26
  - lib/closure-compiler.rb
27
- - vendor/closure-compiler-20091119.jar
27
+ - vendor/closure-compiler-20091203.jar
28
28
  - closure-compiler.gemspec
29
29
  - README.textile
30
30
  - LICENSE