js2 0.1.4 → 0.1.5
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/Rakefile +2 -2
- data/js2.gemspec +3 -3
- metadata +5 -5
data/Rakefile
CHANGED
@@ -2,9 +2,9 @@ require 'rubygems'
|
|
2
2
|
require 'rake'
|
3
3
|
require 'echoe'
|
4
4
|
|
5
|
-
JS2_VERSION = '0.1.
|
5
|
+
JS2_VERSION = '0.1.5'
|
6
6
|
Echoe.new('js2', JS2_VERSION) do |p|
|
7
|
-
p.description = ""
|
7
|
+
p.description = "Object Oriented Javascript to Standard Javascript Compiler/Daemon"
|
8
8
|
p.url = "http://github.com/jeffsu/js2"
|
9
9
|
p.author = "Jeff Su"
|
10
10
|
p.email = "me@jeffsu.com"
|
data/js2.gemspec
CHANGED
@@ -2,13 +2,13 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{js2}
|
5
|
-
s.version = "0.1.
|
5
|
+
s.version = "0.1.5"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["Jeff Su"]
|
9
9
|
s.date = %q{2010-09-07}
|
10
10
|
s.default_executable = %q{js2}
|
11
|
-
s.description = %q{}
|
11
|
+
s.description = %q{Object Oriented Javascript to Standard Javascript Compiler/Daemon}
|
12
12
|
s.email = %q{me@jeffsu.com}
|
13
13
|
s.executables = ["js2"]
|
14
14
|
s.extra_rdoc_files = ["README.md", "CHANGELOG", "bin/js2", "lib/js2.rb", "lib/js2/parser/haml.rb", "lib/js2/parser/haml_engine.rb", "lib/js2/parser/lexer.rb", "lib/js2/parser/tokenizer.rb", "lib/js2/ragel/helper.rb", "lib/js2/ragel/tokenizer.rl", "lib/js2/ragel/tokenizer.rl.erb", "lib/js2/standard/class_node.rb", "lib/js2/standard/factory.rb", "lib/js2/standard/node.rb", "lib/js2/util/compilation.rb", "lib/js2/util/config.rb", "lib/js2/util/exec.rb", "lib/js2/util/file_handler.rb", "lib/js2/util/js2bootstrap.js2", "lib/js2/util/processor.rb", "lib/js2/util/rdoc.rb", "lib/js2/util/sel_decorator.rb", "lib/js2/util/haml_filter.rb", "lib/js2/util/jamis.rb"]
|
@@ -18,7 +18,7 @@ Gem::Specification.new do |s|
|
|
18
18
|
s.require_paths = ["lib"]
|
19
19
|
s.rubyforge_project = %q{js2}
|
20
20
|
s.rubygems_version = %q{1.3.7}
|
21
|
-
s.summary = %q{}
|
21
|
+
s.summary = %q{Object Oriented Javascript to Standard Javascript Compiler/Daemon}
|
22
22
|
s.test_files = ["test/test_js2.rb", "test/test_helper.rb"]
|
23
23
|
|
24
24
|
if s.respond_to? :specification_version then
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: js2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 17
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 0.1.
|
9
|
+
- 5
|
10
|
+
version: 0.1.5
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Jeff Su
|
@@ -19,7 +19,7 @@ date: 2010-09-07 00:00:00 +08:00
|
|
19
19
|
default_executable: js2
|
20
20
|
dependencies: []
|
21
21
|
|
22
|
-
description:
|
22
|
+
description: Object Oriented Javascript to Standard Javascript Compiler/Daemon
|
23
23
|
email: me@jeffsu.com
|
24
24
|
executables:
|
25
25
|
- js2
|
@@ -135,7 +135,7 @@ rubyforge_project: js2
|
|
135
135
|
rubygems_version: 1.3.7
|
136
136
|
signing_key:
|
137
137
|
specification_version: 3
|
138
|
-
summary:
|
138
|
+
summary: Object Oriented Javascript to Standard Javascript Compiler/Daemon
|
139
139
|
test_files:
|
140
140
|
- test/test_js2.rb
|
141
141
|
- test/test_helper.rb
|