closure-compiler 0.1.2 → 0.1.3
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,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-
|
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.
|
6
6
|
|
7
7
|
h2. Installation
|
8
8
|
|
data/closure-compiler.gemspec
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = 'closure-compiler'
|
3
|
-
s.version = '0.1.
|
4
|
-
s.date = '2009-11-
|
3
|
+
s.version = '0.1.3' # Keep version in sync with closure-compiler.rb
|
4
|
+
s.date = '2009-11-20'
|
5
5
|
|
6
6
|
s.homepage = "http://github.com/documentcloud/closure-compiler/"
|
7
7
|
s.summary = "Ruby Wrapper for the Google Closure Compiler"
|
data/lib/closure-compiler.rb
CHANGED
@@ -2,10 +2,12 @@ require File.expand_path(File.dirname(__FILE__) + '/closure/compiler')
|
|
2
2
|
|
3
3
|
module Closure
|
4
4
|
|
5
|
-
VERSION
|
5
|
+
VERSION = "0.1.3"
|
6
6
|
|
7
|
-
|
7
|
+
COMPILER_VERSION = "20091119"
|
8
8
|
|
9
|
-
|
9
|
+
JAVA_COMMAND = 'java'
|
10
|
+
|
11
|
+
COMPILER_JAR = File.expand_path(File.dirname(__FILE__) + "/../vendor/closure-compiler-#{COMPILER_VERSION}.jar")
|
10
12
|
|
11
13
|
end
|
Binary file
|
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
|
+
version: 0.1.3
|
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-
|
12
|
+
date: 2009-11-20 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-
|
27
|
+
- vendor/closure-compiler-20091119.jar
|
28
28
|
- closure-compiler.gemspec
|
29
29
|
- README.textile
|
30
30
|
- LICENSE
|