Re: [Ironruby-core] Why IronRuby is so slower tha IronPython?

2009-08-24 Thread Tomas Matousek
That would be our goal. Tomas From: ironruby-core-boun...@rubyforge.org [mailto:ironruby-core-boun...@rubyforge.org] On Behalf Of Meinrad Recheis Sent: Monday, August 24, 2009 4:11 PM To: ironruby-core@rubyforge.org Subject: Re: [Ironruby-core] Why IronRuby is so slower tha IronPython? thomas,

Re: [Ironruby-core] Why IronRuby is so slower tha IronPython?

2009-08-24 Thread Meinrad Recheis
thomas, I would expect (after a year of optimization work :P) that the performance of IronRuby should be possibly at least good as Ruby1.9. Maybe even better. What do you think? -- henon On Mon, Aug 24, 2009 at 8:29 PM, Tomas Matousek < tomas.matou...@microsoft.com> wrote: > Because Ruby is in ge

Re: [Ironruby-core] Core Review: Time and IO#open fixes

2009-08-24 Thread Daniele Alessandri
Hi, with this commit I think that things are definitely better than before: http://github.com/nrk/ironruby/commit/e880c0cffa337bffa31ed317ca673f8be7dd5795 It also fixes Time to behave just like MRI under circumstances similar to the following ones: irb(main):001:0> Time.local(2009,12,31,23,59,60

Re: [Ironruby-core] Why IronRuby is so slower tha IronPython?

2009-08-24 Thread Tomas Matousek
Because Ruby is in general slower than Python? Even JRuby is almost 3x slower than IronPython. Tomas -Original Message- From: ironruby-core-boun...@rubyforge.org [mailto:ironruby-core-boun...@rubyforge.org] On Behalf Of Marco Mastrodonato Sent: Monday, August 24, 2009 11:18 AM To: ironru

[Ironruby-core] Why IronRuby is so slower tha IronPython?

2009-08-24 Thread Marco Mastrodonato
http://mastrodonato.info/index.php/2009/08/comparison-script-languages-for-the-fractal-geometry/?lang=en Does anyone have any idea? -- Posted via http://www.ruby-forum.com/. ___ Ironruby-core mailing list Ironruby-core@rubyforge.org http://rubyforge.org

Re: [Ironruby-core] [0.9] Erb and unicode. EncoderFallbackException.

2009-08-24 Thread mlkjih mlkjih
With last version it seems to work fine. Thanks. 24 августа 2009 г. 16:41 пользователь Shay Friedman написал: > There is a fixed bug with the exact same exception (it has a nice ID as > well - 1000): > http://ironruby.codeplex.com/WorkItem/View.aspx?WorkItemId=1000 > > Its current status is fixe

[Ironruby-core] Code Review: IronRuby.Rack Rails compat

2009-08-24 Thread Jimmy Schementi
commit 8ae938f9884844a0ec8493e970c128241cd0e686 IronRuby.Rack - Rails compatibility - SCRIPT_NAME maps to ApplicationPath - PATH_INFO maps to (Path - ApplicationPath) - Fix Application.Call - Muta

Re: [Ironruby-core] Code Review: NilBlocks

2009-08-24 Thread Jimmy Schementi
Looks good > -Original Message- > From: Tomas Matousek > Sent: Monday, August 24, 2009 9:31 AM > To: IronRuby External Code Reviewers > Cc: ironruby-core@rubyforge.org > Subject: Code Review: NilBlocks > > tfpt review "/shelveset:NilBlocks;REDMOND\tomat" > Comment : > Fixes nil bloc

[Ironruby-core] Code Review: NilBlocks

2009-08-24 Thread Tomas Matousek
tfpt review "/shelveset:NilBlocks;REDMOND\tomat" Comment : Fixes nil blocks handling. Tomas NilBlocks.diff Description: NilBlocks.diff ___ Ironruby-core mailing list Ironruby-core@rubyforge.org http://rubyforge.org/mailman/listinfo/ironruby-cor

Re: [Ironruby-core] Issues with using Procs for events

2009-08-24 Thread Tomas Matousek
I've filed this issue as http://ironruby.codeplex.com/WorkItem/View.aspx?WorkItemId=2067. Tomas From: ironruby-core-boun...@rubyforge.org [mailto:ironruby-core-boun...@rubyforge.org] On Behalf Of Martin Smith Sent: Friday, August 21, 2009 2:48 PM To: ironruby-core@rubyforge.org Subject: [Ironru

Re: [Ironruby-core] [0.9] Erb and unicode. EncoderFallbackException.

2009-08-24 Thread Shay Friedman
There is a fixed bug with the exact same exception (it has a nice ID as well - 1000): http://ironruby.codeplex.com/WorkItem/View.aspx?WorkItemId=1000 Its current status is fixed (Aug 5). Maybe it's the same issue? Do you use the latest version from GitHub? Shay. - Shay Friedman h

Re: [Ironruby-core] [0.9] Erb and unicode. EncoderFallbackException.

2009-08-24 Thread mlkjih mlkjih
Doesn't work. 2009/8/24 Ivan Porto Carrero > As a long shot you can try to use $KCODE="UTF8" > but I cannot guarantee it will work > --- > Met vriendelijke groeten - Best regards - Salutations > Ivan Porto Carrero > Blog: http://flanders.co.nz > Twitter: http://twitter.com/casualjim > Author of

Re: [Ironruby-core] [0.9] Erb and unicode. EncoderFallbackException.

2009-08-24 Thread Ivan Porto Carrero
As a long shot you can try to use $KCODE="UTF8" but I cannot guarantee it will work --- Met vriendelijke groeten - Best regards - Salutations Ivan Porto Carrero Blog: http://flanders.co.nz Twitter: http://twitter.com/casualjim Author of IronRuby in Action (http://manning.com/carrero) 2009/8/24 m

[Ironruby-core] [0.9] Erb and unicode. EncoderFallbackException.

2009-08-24 Thread mlkjih mlkjih
What can I do? >>> ERB.new("абв") => mscorlib:0:in `GetBytes': Value does not fall within the expected range. (System::Text::EncoderFallbackException) from :0 ___ Ironruby-core mailing list Ironruby-core@rubyforge.org http://rubyforge.org/mailman/

Re: [Ironruby-core] Core Review: Time and IO#open fixes

2009-08-24 Thread Daniele Alessandri
The int,int,int,int,int,int,object,object,object,object overloads are there just to skip the (relative) complexity of CreateTime when you pass 10 arguments to local/utc and all the relevant arguments are integers, e.g. when you do Time.local(*Time.now.to_a). The last four arguments are typed as obj