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.
|
|
5
|
+
Latest Version: *"0.2.2":http://gemcutter.org/gems/closure-compiler*
|
|
6
6
|
|
|
7
|
-
The Closure Compiler's *2010-
|
|
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
|
|
12
|
+
sudo gem install closure-compiler
|
|
13
13
|
</pre>
|
|
14
14
|
|
|
15
15
|
h2. Usage
|
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.2.
|
|
4
|
-
s.date = '2010-
|
|
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"
|
data/lib/closure-compiler.rb
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
7
|
- 2
|
|
8
|
-
-
|
|
9
|
-
version: 0.2.
|
|
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-
|
|
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-
|
|
46
|
+
- vendor/closure-compiler-20100201.jar
|
|
47
47
|
- closure-compiler.gemspec
|
|
48
48
|
- README.textile
|
|
49
49
|
- LICENSE
|