Re: [Ironruby-core] Calling super from CLS override

2008-10-29 Thread Jim Deville
I'll try to get the barebones structure in tomorrow so we can get tests in. JD From: [EMAIL PROTECTED] [EMAIL PROTECTED] On Behalf Of Curt Hagenlocher [EMAIL PROTECTED] Sent: Wednesday, October 29, 2008 9:43 PM To: ironruby-core@rubyforge.org Subject: Re:

Re: [Ironruby-core] Calling super from CLS override

2008-10-29 Thread Curt Hagenlocher
I'm fairly sure this was working at some point -- my bad for not adding an appropriate test :(. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Andrew Peters Sent: Wednesday, October 29, 2008 5:16 PM To: ironruby-core@rubyforge.org Subject: [Ironruby-core

Re: [Ironruby-core] IronRuby for GIMP

2008-10-29 Thread Tomas Matousek
RubyArrays are not implicitly convertible to CLR arrays. You need something like: def to_string_vector array list = System::Collections::Generic::List[ClrString].new array.each {|x| list.add(x.to_s.to_clr_string) } list.to_array end Tomas -Original Message- From: [EMAIL PROTECTED]

[Ironruby-core] Code Review: LexicalScopes2

2008-10-29 Thread Tomas Matousek
tfpt review "/shelveset:LexicalScopes2;REDMOND\tomat" The actual shelveset :) Refactors and simplifies LexicalScope and allocation of local variables. Previously a LocalVariable instance was created per each local variable access, which is unnecessary. Since many scopes don't define any varia

[Ironruby-core] Calling super from CLS override

2008-10-29 Thread Andrew Peters
Hi, Was wondering if this is currently possible as I'm currently getting: System.ArgumentException : wrong number or type of arguments for `Render' at _stub_$19##19(Closure , CallSite , RubyMethodScope , Object , Proc , Object ) C:\Dev\ironruby\trunk\src\Microsoft.Scripting.Core\

Re: [Ironruby-core] IronRuby for GIMP

2008-10-29 Thread Jim Deville
Did anyone ever help you with this? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Maurits Rijk Sent: Monday, October 27, 2008 8:44 AM To: ironruby-core@rubyforge.org Subject: [Ironruby-core] IronRuby for GIMP I'm completely new at IronRuby and I try to

[Ironruby-core] Code Review: LexicalScope2

2008-10-29 Thread Tomas Matousek
tfpt review "/shelveset:LexicalScope2;REDMOND\tomat" Refactors and simplifies LexicalScope and allocation of local variables. Previously a LocalVariable instance was created per each local variable access, which is unnecessary. Also, since many scopes don't define any variables at all we alloca

[Ironruby-core] Code Review: IDO2

2008-10-29 Thread Tomas Matousek
tfpt review "/shelveset:IDO2;REDMOND\tomat" Comment : Implements more of IDO in Ruby. Adds InvokeMember action to DynamicOperations and ObjectOperations. Tomas IDO2.diff Description: IDO2.diff ___ Ironruby-core mailing list Ironruby-core@rubyforge

[Ironruby-core] John Lam's IronRuby talk at PDC (video)

2008-10-29 Thread Oleg Tkachenko
Here is a video of John's PDC talk "IronRuby: The Right Language for the Right Job" - http://channel9.msdn.com/pdc2008/TL44 -- Oleg ___ Ironruby-core mailing list Ironruby-core@rubyforge.org http://rubyforge.org/mailman/listinfo/ironruby-core

Re: [Ironruby-core] Code Review: ContextMerge

2008-10-29 Thread Curt Hagenlocher
Looks good. -Original Message- From: Tomas Matousek Sent: Monday, October 27, 2008 11:25 PM To: IronRuby External Code Reviewers Cc: 'ironruby-core@rubyforge.org' Subject: Code Review: ContextMerge tfpt review "/shelveset:ContextMerge;REDMOND\tomat" Phase 1 of RubyContext and RubyExecu