ruby_parser (RP) is a ruby parser written in pure ruby (utilizing racc--which does by default use a C extension). RP's output is the same as ParseTree's output: s-expressions using ruby's arrays and base types. As an example: def conditional1 arg1 return 1 if arg1 == 0 return 0 end becomes: s(:defn, :conditional1, s(:args, :arg1), s(:if, s(:call, s(:lvar, :arg1), :==, s(:lit, 0)), s(:return, s(:lit, 1)), nil), s(:return, s(:lit, 0))) Tested against 801,039 files from the latest of all rubygems (as of 2013-05):
Package Version | Update ID | Released | Package Hub Version | Platforms | Subpackages |
---|---|---|---|---|---|
3.10.1-bp153.1.16 info | GA Release | 2021-05-10 | 15 SP3 |
|
|
3.10.1-bp152.3.13 info | GA Release | 2020-04-16 | 15 SP2 |
|
|
3.10.1-bp151.1.1 info | GA Release | 2019-07-17 | 15 SP1 |
|
|
3.10.1-bp150.1.2 info | GA Release | 2018-07-30 | 15 |
|
|