closure-compiler 0.2.1 → 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/README.textile CHANGED
@@ -2,14 +2,14 @@ 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.2.1":http://gemcutter.org/gems/closure-compiler*
5
+ Latest Version: *"0.2.2":http://gemcutter.org/gems/closure-compiler*
6
6
 
7
- The Closure Compiler's *2010-03-30* 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 *2010-02-01* JAR-file is included with the gem, so you'll need *Java 6* installed in order to run the compiler.
8
8
 
9
9
  h2. Installation
10
10
 
11
11
  <pre>
12
- sudo gem install closure-compiler --source http://gemcutter.org
12
+ sudo gem install closure-compiler
13
13
  </pre>
14
14
 
15
15
  h2. Usage
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'closure-compiler'
3
- s.version = '0.2.1' # Keep version in sync with closure-compiler.rb
4
- s.date = '2010-3-31'
3
+ s.version = '0.2.2' # Keep version in sync with closure-compiler.rb
4
+ s.date = '2010-4-1'
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.2.1"
5
+ VERSION = "0.2.2"
6
6
 
7
- COMPILER_VERSION = "20100330"
7
+ COMPILER_VERSION = "20100201"
8
8
 
9
9
  JAVA_COMMAND = 'java'
10
10
 
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 2
8
- - 1
9
- version: 0.2.1
8
+ - 2
9
+ version: 0.2.2
10
10
  platform: ruby
11
11
  authors:
12
12
  - Jeremy Ashkenas
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-03-31 00:00:00 -04:00
18
+ date: 2010-04-01 00:00:00 -04:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -43,7 +43,7 @@ extra_rdoc_files: []
43
43
  files:
44
44
  - lib/closure/compiler.rb
45
45
  - lib/closure-compiler.rb
46
- - vendor/closure-compiler-20100330.jar
46
+ - vendor/closure-compiler-20100201.jar
47
47
  - closure-compiler.gemspec
48
48
  - README.textile
49
49
  - LICENSE