Ruby2ruby 2.0.0.b1 Released

ruby2ruby version 2.0.0.b1 has been released!

ruby2ruby provides a means of generating pure ruby code easily from
RubyParser compatible Sexps. This makes making dynamic language
processors in ruby easier than ever!

Changes:

2.0.0.b1 / 2012-07-27

  • 4 major enhancements:

    • Made it work without arglist in call.
    • Made it work without scope/block in class/module/defn/defs.
    • Removed block from resbody
    • Removed block from when node
  • 4 minor enhancements:

    • Added debug task to help isolate an error
    • Empty hash is now a proper {}
    • Refactored and added finish method.
    • Switched to new Ruby18Parser to avoid deprecation warnings
  • 4 bug fixes:

    • Fixed call with empty hash arg. (neilconway)
    • OMG WTF… removed long decrepit ParseTree dependency
    • Removed isolate/rake require to reduce minimum bootstrap to hoe +
      rake + rake install_plugins (*2)
    • Skip 1.9 tests for now.