closure-compiler 0.3.2 → 0.3.3

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.2":http://gemcutter.org/gems/closure-compiler*
5
+ Latest Version: *"0.3.3":http://gemcutter.org/gems/closure-compiler*
6
6
 
7
- The Closure Compiler's *2010-05-15* 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-09-17* 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
 
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'closure-compiler'
3
- s.version = '0.3.2' # Keep version in sync with closure-compiler.rb
4
- s.date = '2010-6-14'
3
+ s.version = '0.3.3' # Keep version in sync with closure-compiler.rb
4
+ s.date = '2010-9-28'
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.2"
3
+ VERSION = "0.3.3"
4
4
 
5
- COMPILER_VERSION = "20100514"
5
+ COMPILER_VERSION = "20100917"
6
6
 
7
7
  JAVA_COMMAND = 'java'
8
8
 
metadata CHANGED
@@ -1,12 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: closure-compiler
3
3
  version: !ruby/object:Gem::Version
4
+ hash: 21
4
5
  prerelease: false
5
6
  segments:
6
7
  - 0
7
8
  - 3
8
- - 2
9
- version: 0.3.2
9
+ - 3
10
+ version: 0.3.3
10
11
  platform: ruby
11
12
  authors:
12
13
  - Jeremy Ashkenas
@@ -15,7 +16,7 @@ autorequire:
15
16
  bindir: bin
16
17
  cert_chain: []
17
18
 
18
- date: 2010-06-14 00:00:00 -04:00
19
+ date: 2010-09-28 00:00:00 -04:00
19
20
  default_executable:
20
21
  dependencies: []
21
22
 
@@ -31,7 +32,7 @@ files:
31
32
  - lib/closure/compiler.rb
32
33
  - lib/closure/popen.rb
33
34
  - lib/closure-compiler.rb
34
- - vendor/closure-compiler-20100514.jar
35
+ - vendor/closure-compiler-20100917.jar
35
36
  - closure-compiler.gemspec
36
37
  - README.textile
37
38
  - LICENSE
@@ -50,23 +51,27 @@ rdoc_options:
50
51
  require_paths:
51
52
  - lib
52
53
  required_ruby_version: !ruby/object:Gem::Requirement
54
+ none: false
53
55
  requirements:
54
56
  - - ">="
55
57
  - !ruby/object:Gem::Version
58
+ hash: 3
56
59
  segments:
57
60
  - 0
58
61
  version: "0"
59
62
  required_rubygems_version: !ruby/object:Gem::Requirement
63
+ none: false
60
64
  requirements:
61
65
  - - ">="
62
66
  - !ruby/object:Gem::Version
67
+ hash: 3
63
68
  segments:
64
69
  - 0
65
70
  version: "0"
66
71
  requirements: []
67
72
 
68
73
  rubyforge_project: closure-compiler
69
- rubygems_version: 1.3.6
74
+ rubygems_version: 1.3.7
70
75
  signing_key:
71
76
  specification_version: 3
72
77
  summary: Ruby Wrapper for the Google Closure Compiler