Re: [Ironruby-core] [patch] Issue in DLR.CommandLine with new lines

2009-03-05 Thread Shri Borde
Subject: Re: [Ironruby-core] [patch] Issue in DLR.CommandLine with new lines I recommend that you file this as a bug report against the DLR at http://www.codeplex.com/dlr -Original Message- From: ironruby-core-boun...@rubyforge.org [mailto:ironruby-core-boun...@rubyforge.org] On Behalf

Re: [Ironruby-core] [patch] Issue in DLR.CommandLine with new lines

2009-03-05 Thread Curt Hagenlocher
@rubyforge.org Subject: Re: [Ironruby-core] [patch] Issue in DLR.CommandLine with new lines On 3/3/09, Jb Evain wrote: > I spent some time investigating why on Mono ir.exe (last git revision) > doesn't print the result of evaluations. > > The issue lies in the processin

Re: [Ironruby-core] [patch] Issue in DLR.CommandLine with new lines

2009-03-05 Thread Jb Evain
On 3/3/09, Jb Evain wrote: > I spent some time investigating why on Mono ir.exe (last git revision) > doesn't print the result of evaluations. > > The issue lies in the processing of new lines in > Microsoft.Scripting.Core.Hosting.Shell.CommandLine. > > The code is appending \n as terminating

Re: [Ironruby-core] [patch] Issue in DLR.CommandLine with new lines

2009-03-04 Thread Rafael Rosa
Hi, Nothing serious, the problem is that the "ir" script has a hardcoded path to "~/bin/ir" and already used that directory, so I had to ajust that, no big deal, but it might be nice to put a small notice on the README warning about that. Sorry for not specifing the problem before. Cheers --

Re: [Ironruby-core] [patch] Issue in DLR.CommandLine with new lines

2009-03-04 Thread Ivan Porto Carrero
Hi Can you let me know which paths were giving you issues? Thanks On Wed, Mar 4, 2009 at 12:09 AM, Rafael Rosa wrote: > Hi, > > It worked, after some wrestling with the paths. Thanks. > > Cheers, > Rafael > www.rafaelrosafu.com > -- > Posted via http://www.ruby-forum.com/. > ___

Re: [Ironruby-core] [patch] Issue in DLR.CommandLine with new lines

2009-03-03 Thread Rafael Rosa
Hi, It worked, after some wrestling with the paths. Thanks. Cheers, Rafael www.rafaelrosafu.com -- Posted via http://www.ruby-forum.com/. ___ Ironruby-core mailing list Ironruby-core@rubyforge.org http://rubyforge.org/mailman/listinfo/ironruby-core

Re: [Ironruby-core] [patch] Issue in DLR.CommandLine with new lines

2009-03-03 Thread Thibaut Barrère
In case that's useful to someone else, I had to: ln -s ~/git/ironruby-mono-builds/lib/ ~/lib ln -s ~/git/ironruby-mono-builds/bin/ ~/bin thanks again Ivan! -- Thibaut On Tue, Mar 3, 2009 at 10:53 PM, Thibaut Barrère wrote: > You can find the binaries @ >> http://github.com/casualjim/ironruby-mo

Re: [Ironruby-core] [patch] Issue in DLR.CommandLine with new lines

2009-03-03 Thread Thibaut Barrère
> > You can find the binaries @ > http://github.com/casualjim/ironruby-mono-builds > Lovely - cloning it right now. thanks! -- Thibaut > > > > > On Tue, Mar 3, 2009 at 10:25 PM, Thibaut Barrère < > thibaut.barr...@gmail.com> wrote: > >> Hi Ivan, >> >>> I can publish a packaged version automati

Re: [Ironruby-core] [patch] Issue in DLR.CommandLine with new lines

2009-03-03 Thread Ivan Porto Carrero
You can find the binaries @ http://github.com/casualjim/ironruby-mono-builds On Tue, Mar 3, 2009 at 10:25 PM, Thibaut Barrère wrote: > Hi Ivan, > >> I can publish a packaged version automatically when I build if you want. >> That would typically be 1-2 days behind on Jim's pushes. >> >> I'll se

Re: [Ironruby-core] [patch] Issue in DLR.CommandLine with new lines

2009-03-03 Thread Thibaut Barrère
Hi Ivan, > I can publish a packaged version automatically when I build if you want. > That would typically be 1-2 days behind on Jim's pushes. > > I'll set up a git repo with mono builds and publish the url here and on the > wiki > that will be useful, thanks! -- Thibaut > > > > > On Tue, Mar

Re: [Ironruby-core] [patch] Issue in DLR.CommandLine with new lines

2009-03-03 Thread Ivan Porto Carrero
For me it builds but I'm on mono trunk On the build server it builds as well: http://ironruby.colliertech.org/integrity/ironruby/builds/45599d7a3f2f769fc5f658ea2f8eaec1e2eb666a I can publish a packaged version automatically when I build if you want. That would typically be 1-2 days behind on Jim'

Re: [Ironruby-core] [patch] Issue in DLR.CommandLine with new lines

2009-03-03 Thread Thibaut Barrère
> Ok I just checked in the latest git push from Jim into the linux branch. I > also applied your patches JB. > As it turns out it was a merge conflict in Microsoft.Scripting.Build.csproj, > but git found it unnecessary to mark it as a conflict and just kept the > older version of the file. > > It l

Re: [Ironruby-core] [patch] Issue in DLR.CommandLine with new lines

2009-03-03 Thread Ivan Porto Carrero
Ok I just checked in the latest git push from Jim into the linux branch. I also applied your patches JB. As it turns out it was a merge conflict in Microsoft.Scripting.Build.csproj, but git found it unnecessary to mark it as a conflict and just kept the older version of the file. It looks like Run

Re: [Ironruby-core] [patch] Issue in DLR.CommandLine with new lines

2009-03-03 Thread Thibaut Barrère
org > Subject: Re: [Ironruby-core] [patch] Issue in DLR.CommandLine with new lines > > > > http://github.com/mletterle/ironruby > > cd src > > git clone git://github.com/mletterle/ironruby.git > cd ironruby > git checkout -b linux > git pull origin linux > > ./bu

Re: [Ironruby-core] [patch] Issue in DLR.CommandLine with new lines

2009-03-03 Thread Jb Evain
Hey, On 3/3/09, Ivan Porto Carrero wrote: > public class MyType{ > } > > Compiles on MS.NET but not on Mono. Huh? It does compile on Mono. It must be a different issue. > There is an issue though around delegates but this has to do with generic > type parameter inference again. Have you filed

Re: [Ironruby-core] [patch] Issue in DLR.CommandLine with new lines

2009-03-03 Thread Jb Evain
Hey, On 3/3/09, Ivan Porto Carrero wrote: > On that page you can find most of the code fixes I made to make IR compile > on mono. Very nice, thanks! -- Jb Evain ___ Ironruby-core mailing list Ironruby-core@rubyforge.org http://rubyforge.org/mailma

Re: [Ironruby-core] [patch] Issue in DLR.CommandLine with new lines

2009-03-03 Thread Ivan Porto Carrero
better way to do the build. >> >> >> >> *From:* ironruby-core-boun...@rubyforge.org [mailto: >> ironruby-core-boun...@rubyforge.org] *On Behalf Of *Ivan Porto Carrero >> *Sent:* Tuesday, March 03, 2009 6:47 AM >> *To:* ironruby-core@rubyforge.org >> *S

Re: [Ironruby-core] [patch] Issue in DLR.CommandLine with new lines

2009-03-03 Thread Ivan Porto Carrero
Perhaps.. Most of the fixes in that branch have to do with type inference and missing parameterless constructors. public class MyType{ } Compiles on MS.NET but not on Mono. public class MyType{ public MyType(){ } } There is an issue though around delegates but this has to do with generic

Re: [Ironruby-core] [patch] Issue in DLR.CommandLine with new lines

2009-03-03 Thread Ivan Porto Carrero
*Ivan Porto Carrero > *Sent:* Tuesday, March 03, 2009 6:47 AM > *To:* ironruby-core@rubyforge.org > *Subject:* Re: [Ironruby-core] [patch] Issue in DLR.CommandLine with new > lines > > > > http://github.com/mletterle/ironruby > > cd src > > git clone > git://github.c

Re: [Ironruby-core] [patch] Issue in DLR.CommandLine with new lines

2009-03-03 Thread Shri Borde
[mailto:ironruby-core-boun...@rubyforge.org] On Behalf Of Ivan Porto Carrero Sent: Tuesday, March 03, 2009 6:47 AM To: ironruby-core@rubyforge.org Subject: Re: [Ironruby-core] [patch] Issue in DLR.CommandLine with new lines http://github.com/mletterle/ironruby cd src git clone git://github.com/mletterle

Re: [Ironruby-core] [patch] Issue in DLR.CommandLine with new lines

2009-03-03 Thread Jb Evain
Hey Ivan, On 3/3/09, Ivan Porto Carrero wrote: > Great i'll add those to the mono branch :) Do you keep a log of what goes into this branch? Does the branch contain any workaround for a Mono issue that has not been solved, or reported? -- Jb Evain

Re: [Ironruby-core] [patch] Issue in DLR.CommandLine with new lines

2009-03-03 Thread Ivan Porto Carrero
http://github.com/mletterle/ironruby cd src git clone git://github.com/mletterle/ironruby.git cd ironruby git checkout -b linux git pull origin linux ./build (you may have to chmod +x that build file first) or sh build if you put ~/bin in your PATH var

Re: [Ironruby-core] [patch] Issue in DLR.CommandLine with new lines

2009-03-03 Thread Thibaut Barrère
> Great i'll add those to the mono branch :) Sorry for the obvious question: where is the mono branch ? I think I reached a point where I need to build it myself (and I want to stay on Mac for the moment :-). -- Thibaut ___ Ironruby-core mailing list I

Re: [Ironruby-core] [patch] Issue in DLR.CommandLine with new lines

2009-03-03 Thread Ivan Porto Carrero
Great i'll add those to the mono branch :) On Tue, Mar 3, 2009 at 1:46 PM, Jb Evain wrote: > Hey, > > I spent some time investigating why on Mono ir.exe (last git revision) > doesn't print the result of evaluations. > > The issue lies in the processing of new lines in > Microsoft.Scripting.Core.

[Ironruby-core] [patch] Issue in DLR.CommandLine with new lines

2009-03-03 Thread Jb Evain
Hey, I spent some time investigating why on Mono ir.exe (last git revision) doesn't print the result of evaluations. The issue lies in the processing of new lines in Microsoft.Scripting.Core.Hosting.Shell.CommandLine. The code is appending \n as terminating new lines, but checks for the presence