jsc 0.1.0 → 0.1.1
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.rdoc +6 -9
- data/Rakefile +1 -1
- metadata +2 -2
data/README.rdoc
CHANGED
@@ -1,10 +1,10 @@
|
|
1
|
-
jsc, a Ruby REST API to Google Closure Compiler web service
|
1
|
+
jsc, a Ruby REST API to {Google Closure Compiler web service}[http://code.google.com/closure/compiler/]
|
2
2
|
by sub
|
3
3
|
http://github.com/sub/jsc
|
4
4
|
|
5
5
|
== DESCRIPTION:
|
6
6
|
|
7
|
-
A simple and clear Ruby REST API to
|
7
|
+
A simple and clear Ruby REST API to Google Closure Compiler service.
|
8
8
|
|
9
9
|
== FEATURES:
|
10
10
|
|
@@ -46,6 +46,7 @@ Compile a piece of code, check for errors:
|
|
46
46
|
ruby bin/jsc -e "function("
|
47
47
|
|
48
48
|
<b>NOTE</b>: the library is a single file, so you can include it and just call the JSCompiler.compile(file_name, operations, compilation_level) function everywhere in your code. Check the plugins dir for samples or snippets.
|
49
|
+
|
49
50
|
<b>UPDATE 20091212</b>: bin file plugins/bin/google_closure_compiler not working at the moment due to changes in project name and structure
|
50
51
|
|
51
52
|
== EMACS SNIPPETS
|
@@ -64,17 +65,13 @@ Now, select the code to compile and run:
|
|
64
65
|
|
65
66
|
== REQUIREMENTS:
|
66
67
|
|
67
|
-
|
68
|
+
jsc require the {bones}[http://gemcutter.org/gems/bones] gem
|
68
69
|
|
69
70
|
== INSTALL:
|
70
71
|
|
71
|
-
|
72
|
-
|
73
|
-
rake gem:package
|
74
|
-
|
75
|
-
In order to install it, run:
|
72
|
+
If you have gemcutter in your gem sources, run:
|
76
73
|
|
77
|
-
|
74
|
+
gem install jsc
|
78
75
|
|
79
76
|
== LICENSE:
|
80
77
|
|
data/Rakefile
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jsc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- sub
|
@@ -22,7 +22,7 @@ dependencies:
|
|
22
22
|
- !ruby/object:Gem::Version
|
23
23
|
version: 3.1.0
|
24
24
|
version:
|
25
|
-
description: A simple and clear Ruby REST API to
|
25
|
+
description: A simple and clear Ruby REST API to Google Closure Compiler service.
|
26
26
|
email: fitzkarraldo@gmail.com
|
27
27
|
executables:
|
28
28
|
- jsc
|