ruby_parser
ruby_parser (RP) is a ruby parser written in pure ruby (utilizing racc--which does by default use a C extension). It outputs s-expressions which can be manipulated and converted back to ruby via the ruby2ruby gem. 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): * 1.8 parser is at 99.9739% accuracy, 3.651 sigma * 1.9 parser is at 99.9940% accuracy, 4.013 sigma * 2.0 parser is at 99.9939% accuracy, 4.008 sigma * 2.6 parser is at 99.9972% accuracy, 4.191 sigma * 3.0 parser has a 100% parse rate. * Tested against 2,672,412 unique ruby files across 167k gems. * As do all the others now, basically.
Activity
- Latest release
- 8mo ago
- Total releases
- 80
- Cadence
- ~3 months
- Last 12 months
- 1
Details
- License
- MIT
- First release
- Dec 22, 2007
| Version | Released | |
|---|---|---|
3.22.0
minor
| ||
3.21.1
patch
| ||
3.21.0
minor
| ||
3.20.3
patch
| ||
3.20.2
patch
| ||
3.20.1
patch
| ||
3.20.0
minor
| ||
3.19.2
patch
| ||
3.19.1
patch
| ||
3.19.0
minor
| ||
3.18.1
patch
| ||
3.18.0
minor
| ||
3.17.0
minor
| ||
3.16.0
minor
| ||
3.15.1
patch
| ||
3.15.0
minor
| ||
3.14.2
patch
| ||
3.14.1
patch
| ||
3.14.0
minor
| ||
3.13.1
patch
| ||
3.13.0
minor
| ||
3.12.0
minor
| ||
3.11.0
minor
| ||
3.10.1
patch
| ||
3.10.0
minor
| ||
3.9.0
minor
| ||
3.8.4
patch
| ||
3.8.3
patch
| ||
3.8.2
patch
| ||
3.8.0
minor
| ||
3.8.1
patch
| ||
3.7.3
patch
| ||
3.7.2
patch
| ||
3.7.1
patch
| ||
3.7.0
minor
| ||
3.6.6
patch
| ||
3.6.5
patch
| ||
3.6.4
patch
| ||
3.6.3
patch
| ||
3.6.2
patch
| ||
3.6.1
patch
| ||
3.6.0
minor
| ||
3.5.0
minor
| ||
3.4.1
patch
| ||
3.4.0
minor
| ||
3.3.0
minor
| ||
3.2.2
patch
| ||
3.2.1
patch
| ||
3.2.0
minor
| ||
3.1.3
patch
|