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

2008-09-06 Thread Unnikrishnan Nair
Thanks. I might have missed some mails I guess. --- On Sat, 9/6/08, Seo Sanghyeon <[EMAIL PROTECTED]> wrote: > From: Seo Sanghyeon <[EMAIL PROTECTED]> > Subject: Re: [Ironruby-core] Did any build ironruby successfully in Mono? > To: [EMAIL PROTECTED], ironruby-core@rubyforge.org > Date: Saturday

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

2008-09-06 Thread Seo Sanghyeon
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 looking at Google Chrome... --

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

2008-09-06 Thread Unnikrishnan Nair
Just curious, I just checked out 140 from svn and when I build I am getting basename not found in string... Just curious... ___ Ironruby-core mailing list Ironruby-core@rubyforge.org http://rubyforge.org/mailman/listinfo/ironruby-core

Re: [Ironruby-core] [IronPython] irc.rb

2008-09-06 Thread KE
It's coming from the call stack -> CompileLambda -> AnalyzeLambda. The LambdaExpression is "($scope, $language) => [Scope]" but AnalyzeLambda passes a null CompilerScope to VariableBinder.Bind. Somehow this same VariableBinder is used during a ExpressionType.Call to: // // AST: MethodCallExpressio

Re: [Ironruby-core] [IronPython] irc.rb

2008-09-06 Thread KE
Okay, well I found two code problems in two IR implementations of IExpressionSerializable: /ironruby/Runtime/Calls/rubycallaction.cs CreateExpression() is passing the wrong second Type parameter. It should be typeof(RubyCallSignature) /ironruby/Runtime/Calls/rubycallsignature.cs CreateExpression(

Re: [Ironruby-core] [IronPython] irc.rb

2008-09-06 Thread KE
Thanks! I've also created a bug report: http://rubyforge.org/tracker/index.php?func=detail&aid=21839&group_id=4359&a tid=16798 This includes the irc.rb which I think IronRuby will be interested in including in the IronRuby distribution as well.. I'll try to step through into this bug and underst

Re: [Ironruby-core] Compile Ruby Script

2008-09-06 Thread Aaron Clauson
Found it: CompiledCode compiledScript = scriptScope.Engine.CreateScriptSourceFromString(script).Compile() Regards, Aaron -- Posted via http://www.ruby-forum.com/. ___ Ironruby-core mailing list Ironruby-core@rubyforge.org http://rubyforge.org/mailma

[Ironruby-core] Compile Ruby Script

2008-09-06 Thread Aaron Clauson
Hi, Is there a compile option available for IronRuby so that a script could be compiled and then re-executed repeatedly? The PythonEngine has a compile option that facilitates that and I'm trying to determine if IronRuby has an equivalent. Thanks, Aaron -- Posted via http://www.ruby-forum.com/.