From: Sakurai Masashi Date: 2005-07-19T20:52:08+09:00 Subject: [ANN] yajb 0.5.0 yajb 0.5.0 has been released. http://www.cmt.phys.kyushu-u.ac.jp/~M.Sakurai/cgi-bin/fw/wiki.cgi%3Fpage%3DYAJB == What is yajb? yajb, yet another java bridge, provides a communication facility between Ruby and Java. The current implementation is written by pure Java and pure Ruby so as to run on many platforms. Please see screenshots and sample scripts in yajb web page. == What's new * implemented the faster bridge driver :bstream. * implemented GC. * added jlambda utility. jlambda enable writing proc object in Java. **jlambda sample: p1 = jlambda("int i", "return ($w)(i*2);") p (1..5).map(&p1) => [2, 4, 6, 8, 10] -- Masashi Sakurai m.sakurai@dream.com