live_ast_ruby_parser 0.5.1 → 0.5.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/CHANGES.rdoc +4 -0
- data/README.rdoc +0 -5
- data/Rakefile +2 -1
- data/lib/live_ast_ruby_parser/unparser.rb +3 -0
- metadata +2 -2
data/CHANGES.rdoc
CHANGED
data/README.rdoc
CHANGED
|
@@ -5,11 +5,6 @@
|
|
|
5
5
|
|
|
6
6
|
This is the default RubyParser-based parser used by LiveAST.
|
|
7
7
|
|
|
8
|
-
== Description
|
|
9
|
-
|
|
10
|
-
The nested TestForms module enables testing with the LiveAST test
|
|
11
|
-
suite. The Unparser module is used by +to_ruby+.
|
|
12
|
-
|
|
13
8
|
== Links
|
|
14
9
|
|
|
15
10
|
* Home: http://quix.github.com/live_ast_ruby_parser
|
data/Rakefile
CHANGED
|
@@ -3,7 +3,8 @@ require_relative 'devel/jumpstart'
|
|
|
3
3
|
Jumpstart.new "live_ast_ruby_parser" do |s|
|
|
4
4
|
s.developers << ["James M. Lawrence", "quixoticsycophant@gmail.com"]
|
|
5
5
|
s.github_user = "quix"
|
|
6
|
-
s.version = "0.5.
|
|
6
|
+
s.version = "0.5.2"
|
|
7
|
+
s.description = s.summary
|
|
7
8
|
|
|
8
9
|
# my code compensates for a ruby_parser bug; make this equal for now
|
|
9
10
|
s.dependencies << ["ruby_parser", "= 2.0.6"]
|
metadata
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: live_ast_ruby_parser
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 0.5.
|
|
5
|
+
version: 0.5.2
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- James M. Lawrence
|
|
@@ -35,7 +35,7 @@ dependencies:
|
|
|
35
35
|
version: "0"
|
|
36
36
|
type: :runtime
|
|
37
37
|
version_requirements: *id002
|
|
38
|
-
description:
|
|
38
|
+
description: This is the default RubyParser-based parser used by LiveAST.
|
|
39
39
|
email:
|
|
40
40
|
- quixoticsycophant@gmail.com
|
|
41
41
|
executables: []
|