[Ironruby-core] Code Review: FuncDelegates

2009-06-25 Thread Tomas Matousek
tfpt review "/shelveset:FuncDelegates;REDMOND\tomat" Replaces custom block delegates with Func delegates. Tomas FuncDelegates.diff Description: FuncDelegates.diff ___ Ironruby-core mailing list Ironruby-core@rubyforge.org http://rubyforge.org/mailman/

[Ironruby-core] Ironruby.info updated

2009-06-25 Thread Jim Deville
Sorry it's been so long. But it's up to date again. JD ...there is no try ___ Ironruby-core mailing list Ironruby-core@rubyforge.org http://rubyforge.org/mailman/listinfo/ironruby-core

Re: [Ironruby-core] Review: fixes for Array#rindex and Array#reverse_each

2009-06-25 Thread Daniele Alessandri
Just merged and pushed to my remote repository. On Thu, Jun 25, 2009 at 01:29, Jim Deville wrote: > Should be fine. I don’t plan on doing a pull until Friday. > > > > From: ironruby-core-boun...@rubyforge.org > [mailto:ironruby-core-boun...@rubyforge.org] On Behalf Of Daniele Alessandri > Sent: We

[Ironruby-core] Code Review: bugfixes

2009-06-25 Thread Jim Deville
tfpt review "/shelveset:bugfixes;REDMOND\jdeville" Comment : Regression tests to close Codeplex bugs: Access is allowed to internal fields from File.expand_path does not support a line number after filename from

Re: [Ironruby-core] Review: Misc ActiveRecord bug fixes

2009-06-25 Thread Tomas Matousek
Kernel.cs: switch ((char)cmd) will blow up if char > 0x or < 0. There is an implicit conversion from int to char, so the cast is unnecessary. It seems that Ruby uses (cmd & 0xff) as a value of the command. Other than that looks good. Tomas From: Shri Borde Sent: Thursday, June 25, 2009 10:

[Ironruby-core] Review: Misc ActiveRecord bug fixes

2009-06-25 Thread Shri Borde
http://github.com/shri/ironruby/commit/000ccff01b5a5cb53c140e94dc3f4c2e34806ba2 Fix bug in LightLambda.CreateCustomDelegate - it was not dealing with valuetype arguments. Partial implementation of Kernel#test Effectively call Thread.critical=false when a thread exits after having done Thread.cri