Re: [Ironruby-core] Code Review: rakecrossplatform

2008-12-31 Thread Michael Letterle
By the by, forward slashes are acceptable as path separators in windows as well as under unix. This /may/ be more acceptable as it's clearer, IMHO. On Wed, Dec 31, 2008 at 4:29 PM, Jim Deville wrote: > I'm going to directly commit this since it doesn't affect tests. > > JD > > -Original Mes

Re: [Ironruby-core] Code Review: rakecrossplatform

2008-12-31 Thread Jim Deville
I'm going to directly commit this since it doesn't affect tests. JD -Original Message- From: Curt Hagenlocher Sent: Wednesday, December 31, 2008 1:17 PM To: Jim Deville; IronRuby External Code Reviewers Cc: ironruby-core@rubyforge.org Subject: RE: Code Review: rakecrossplatform Looks go

Re: [Ironruby-core] Code Review: rakecrossplatform

2008-12-31 Thread Curt Hagenlocher
Looks good! -Original Message- From: Jim Deville Sent: Wednesday, December 31, 2008 12:21 PM To: IronRuby External Code Reviewers Cc: ironruby-core@rubyforge.org Subject: Code Review: rakecrossplatform tfpt review "/shelveset:rakecrossplatform;REDMOND\jdeville" Comment : Fixes the

[Ironruby-core] Code Review: rakecrossplatform

2008-12-31 Thread Jim Deville
tfpt review "/shelveset:rakecrossplatform;REDMOND\jdeville" Comment : Fixes the imports to reference the files in a platform agnostic way. rakecrossplatform.diff Description: rakecrossplatform.diff ___ Ironruby-core mailing list Ironruby-core@r

Re: [Ironruby-core] Need help building IronRuby on Mono 2 + OS X

2008-12-31 Thread jirapong.na...@gmail.com
I was able to build with Ivan's instruction base on mono 2.2 RC1. You can get an installer from http://mono.ximian.com/monobuild/preview/archive/2.2/macos-10-universal/4/MonoFramework-2.2_4.macos10.novell.universal.dmg Hope this helps, -Jirapong On Dec 31, 2008, at 4:14 PM, C. K. Ponnappa wrot

Re: [Ironruby-core] problems with gems

2008-12-31 Thread Curt Hagenlocher
Yes, this is supposed to work – at least when using the MS™ CLR ☺. I used both rake and sinatra as test cases when I was eliminating obstacles to making “igem install” work. I wonder if the problem here might be that the path construction temporarily resulted in something greater than the perm

[Ironruby-core] more mono problems

2008-12-31 Thread Ivan Porto Carrero
It looks like IronRuby doesn't want to function properly on mono. I can't run an external file for example. I created a file with as content 1 + 1 and when I run that file I get the following error: » mono ir.exe -D test.rb mscorlib:0:in `set_Fallback': Argument cannot be null. (System::ArgumentN

[Ironruby-core] problems with gems

2008-12-31 Thread Ivan Porto Carrero
Hi I tried to install the rails gem using igem. Is that supposed to work? » igem install rails ERROR: Error installing rails: attempt to install file into "test/fixtures/test_mailer/implicitly_multipart_example.text.html.erb~" under ools/ironruby/merlin/External/languages/ruby/ruby-1.8.6

Re: [Ironruby-core] Need help building IronRuby on Mono 2 + OS X

2008-12-31 Thread C. K. Ponnappa
Ok, I switched to building Mono from source instead of through ports - ran into some trouble building mono itself, but I'll get that sorted out and then try building Ivan's fork and let you guys know how that goes. And a big thank you to all for helping out so much - it really pushes someone n

Re: [Ironruby-core] Interpreter, backtrace, and call site caching

2008-12-31 Thread Shri Borde
Adding a try-catch around the optimized case (callSiteInfo.CallerTarget) fixes the problem. However, this points out that we need to have a try-catch around every operation in Interpreter.cs that could cause an exception and have the catch call LanguageContext.InterpretExceptionThrow. From: iro