Re: [Ironruby-core] Did any build ironruby successfully in Mono?

2008-09-07 Thread Michael Foord
Seo Sanghyeon wrote: 2008/9/6 Unnikrishnan Nair <[EMAIL PROTECTED]>: Just curious, I just checked out 140 from svn and when I build I am getting basename not found in string... Just curious... I do. I need to (again, and again!) write up and update HOWTO, but I'm currently busy lookin

Re: [Ironruby-core] Did any build ironruby successfully in Mono?

2008-09-07 Thread Jim Deville
Seo, Isn't that a Rakefile or context.rb issue? If so can you just fix it and check it in? JD From: [EMAIL PROTECTED] [EMAIL PROTECTED] On Behalf Of Michael Foord [EMAIL PROTECTED] Sent: Saturday, September 06, 2008 8:35 AM To: ironruby-core@rubyforge.or

[Ironruby-core] Deriving from framework class with Initialize method

2008-09-07 Thread Stefan Dobrev
Hi guys, I was trying to run the following code: *class MyObj < DependencyObject end obj = MyObj.new* Where DepenencyObject comes from the WPF stack (WindowsBase.dll). However this fails on the *MyObj.new* line with strange error that wrong arguments or types are passed to initialize method. Af

Re: [Ironruby-core] Deriving from framework class with Initialize method

2008-09-07 Thread Curt Hagenlocher
Interesting. What do you think should happen when a CLS type has a method whose name collides with a "special" Ruby method name like "initialize" or "allocate"? This isn't an issue in IronPython because of Guido's foresight in decorating all special names with double underscores. :) Maybe for

Re: [Ironruby-core] Deriving from framework class with Initialize method

2008-09-07 Thread Tomas Matousek
Or maybe we could just not mangle Initialize CLR method name. That would prevent the conflict in most cases (.NET guidelines recommend to use Pascal case method names). Tomas From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Curt Hagenlocher Sent: Sunday, September 07, 2008 1:19 PM