[Ironruby-core] IronRuby Compiles Broken?

2008-10-23 Thread Ted Milker
Is the IronRuby tree currently broken for compiles? I have tried everything I can think of to get it to build and I just get: Setting environment for using Microsoft Visual Studio 2008 x86 tools. c:\Users\ted\Desktop\IronRubyrake compile (in c:/Users/ted/Desktop/IronRuby) Read in 17 resources

Re: [Ironruby-core] IronRuby Compiles Broken?

2008-10-23 Thread Ted Milker
On Thu, Oct 23, 2008 at 11:49 AM, Ivan Porto Carrero [EMAIL PROTECTED] wrote: I got the same errors yesterday. I could build it using visual studio though. Mine was on vista 32-bit in both powershell and command Wow, I sure was overlooking the obvious. I have been fighting this since the

Re: [Ironruby-core] Overriding CLS Virtuals

2008-10-25 Thread Ted Milker
On Sat, Oct 25, 2008 at 6:59 PM, Orion Edwards [EMAIL PROTECTED] wrote: While none of the languages will stop you from using any conventions you like, it's MUCH easier to learn to put your ego aside, and go with the conventions. I agree, however, the DLR adds a twist to the formula. The

Re: [Ironruby-core] Overriding CLS Virtuals

2008-10-26 Thread Ted Milker
On Sun, Oct 26, 2008 at 12:20 AM, Curt Hagenlocher [EMAIL PROTECTED] wrote: However, virtual calls from a C# application back into IronRuby are a different matter, due Ruby's dynamic nature. Here there is both a performance cost and a semantic cost for performing multiple lookups. The

Re: [Ironruby-core] Unicode Source Files

2008-10-26 Thread Ted Milker
Here is the extension method I am using if anyone else is interested: public static object ExecuteUnicodeFile( this ScriptRuntime rt, string filename ) { string rbCode; // OpenText will strip the BOM and keep the Unicode intact using( var rdr = File.OpenText( filename ) ) {