=== 1.3.1 / 2011-09-22
* 1 minor enhancement:
* Added parenthesize to add parens in certain contexts.
* 10 bug fixes:
* Add newline to 'do nothing' comment in a block... seems contrived. (andreacampi)
* Binary operations not work properly with some complex statements. (smorss)
* Fixed if statements with no body (smorss)
* Fixed logic for call with hash args in various locations (smorss)
* Fixed match3 on an assignment. (smorss)
* Fixed multiple nested rescue/ensure exprs (larsch)
* Fixed process_alias to parenthesize (smorss)
* Fixed process_and to parenthenize only when it makes sense.
* Fixed rescue with 2+ statements in resbody (smorss)
* Regexps with options other than /o were not showing flags. (smorss)
* Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk.
* Add LICENSE.
* Update dependency according to gemspec.
* Add CONFLICTS since it will install the same name commands both
ruby18 and ruby19 based packages.
=== 1.2.5 / 2010-09-01
* 4 minor enhancements:
* Added braces to hash args surrounded if in a binary method call.
* Added rewrite_resbody to double check structure and freak if necessary.
* Added stress task
* rewrite_rescue now detects rescue with multiple arguments.
* 2 bug fixes:
* Fixed dstr/dregex/d* roundtripping problem
* Fixed up call arg processing to be more correct and to work with the new sexp form
ruby2ruby provides a means of generating pure ruby code easily from
ParseTree's Sexps. This makes making dynamic language processors much
easier in ruby than ever before.