live_ast_ripper 0.5.0 → 0.5.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES.rdoc +10 -2
- data/README.rdoc +5 -5
- data/Rakefile +2 -1
- metadata +2 -2
data/CHANGES.rdoc
CHANGED
@@ -1,10 +1,18 @@
|
|
1
1
|
|
2
2
|
= live_ast_ripper ChangeLog
|
3
3
|
|
4
|
-
== Version 0.
|
4
|
+
== Version 0.5.1
|
5
|
+
|
6
|
+
* doc fixes
|
7
|
+
|
8
|
+
== Version 0.5.0
|
9
|
+
|
10
|
+
* new plugin API
|
11
|
+
|
12
|
+
== Version 0.4.0 X yanked
|
5
13
|
|
6
14
|
* new parser plugin design to work around obscure autoload failure
|
7
15
|
|
8
|
-
== Version 0.3.0
|
16
|
+
== Version 0.3.0 X yanked
|
9
17
|
|
10
18
|
* initial release
|
data/README.rdoc
CHANGED
@@ -5,11 +5,6 @@
|
|
5
5
|
|
6
6
|
A Ripper-based parser plug-in for LiveAST.
|
7
7
|
|
8
|
-
== Description
|
9
|
-
|
10
|
-
The nested TestForms module enables testing with the LiveAST test
|
11
|
-
suite.
|
12
|
-
|
13
8
|
== Links
|
14
9
|
|
15
10
|
* Home: http://quix.github.com/live_ast_ripper
|
@@ -17,6 +12,11 @@ suite.
|
|
17
12
|
* Manual Download: http://github.com/quix/live_ast_ripper/archives/master
|
18
13
|
* Repository: http://github.com/quix/live_ast_ripper
|
19
14
|
|
15
|
+
== Known Issues
|
16
|
+
|
17
|
+
* Ripper does not report the line number of <code>-></code> (stabby
|
18
|
+
lambda). Therefore the ASTs of stabby lambdas are not available.
|
19
|
+
|
20
20
|
== Author
|
21
21
|
|
22
22
|
* James M. Lawrence < quixoticsycophant@gmail.com >
|
data/Rakefile
CHANGED
@@ -3,7 +3,8 @@ require_relative 'devel/jumpstart'
|
|
3
3
|
Jumpstart.new "live_ast_ripper" 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.1"
|
7
|
+
s.description = s.summary
|
7
8
|
end
|
8
9
|
|
9
10
|
# testing done inside live_ast
|
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: live_ast_ripper
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.5.
|
5
|
+
version: 0.5.1
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- James M. Lawrence
|
@@ -14,7 +14,7 @@ date: 2011-02-24 00:00:00 -05:00
|
|
14
14
|
default_executable:
|
15
15
|
dependencies: []
|
16
16
|
|
17
|
-
description:
|
17
|
+
description: A Ripper-based parser plug-in for LiveAST.
|
18
18
|
email:
|
19
19
|
- quixoticsycophant@gmail.com
|
20
20
|
executables: []
|