[ruby-talk:443036] [ANN] ruby2ruby 2.5.0 Released

ruby2ruby version 2.5.0 has been released!

* home: <https://github.com/seattlerb/ruby2ruby&gt;
* rdoc: <http://docs.seattlerb.org/ruby2ruby&gt;

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.5.0 / 2022-10-04

* 5 minor enhancements:

  * Added support for (most?) pattern matching.
  * Added support for **kwrest.
  * Added support for forward args (...), defn and call.
  * Added support for preexe (BEGIN { ... }).
  * Support ruby 3.1 hash shorthand syntax. (presidentbeef)

* 3 bug fixes:

  * Fix generation of case w/ no else.
  * Fixed a bug block shadow vars (they're grouped)
  * Fixed find_pat up (after fixing a find_pat bug in ruby_parser).