Re: [Ironruby-core] IronPython build in irtests broken

2009-08-20 Thread Jim Deville
In the process of pushing again, so irtests should pass in about 10 minutes. From: ironruby-core-boun...@rubyforge.org [mailto:ironruby-core-boun...@rubyforge.org] On Behalf Of Shri Borde Sent: Thursday, August 20, 2009 10:20 PM To: ironruby-core@rubyforge.org Subject: [Ironruby-core] IronPython

[Ironruby-core] IronPython build in irtests broken

2009-08-20 Thread Shri Borde
It looks like IronPython will not build with the latest sources in GIT, and so irtests will fail. You could comment out this line in Merlin\Main\Languages\Ruby\Scripts\irtests.rb to disable building of IronPython if you want to run the rest of the tests. msbuild "IronPython\\IronPython.sln"

Re: [Ironruby-core] Cucumber status

2009-08-20 Thread Tomas Matousek
I've just fixed the warning :) From: ironruby-core-boun...@rubyforge.org [mailto:ironruby-core-boun...@rubyforge.org] On Behalf Of Xerxes Battiwalla Sent: Thursday, August 20, 2009 4:50 PM To: ironruby-core@rubyforge.org Subject: Re: [Ironruby-core] Cucumber status I just pulled down the latest

Re: [Ironruby-core] Cucumber status

2009-08-20 Thread Xerxes Battiwalla
I just pulled down the latest merge from TFS and although the specs now execute (and pass!), Cucumber now reports a warning on just about every line of output to the console:"unknown:0: warning: multiple values for a block parameter (2 for 1)" As before, when executed under Cucumber/MRI, the featu

Re: [Ironruby-core] Code Review: SSLContext shell and basic specs

2009-08-20 Thread Shri Borde
In type_spec, "OpenSSL::SSL.should == OpenSSL::SSL" is a noop. Please remove the test (unless I am missing something about why this is valuable). In constant_spec.rb, please also add tests comparing the constant to some literal value. The current spec only ensures that the two sets of constants

[Ironruby-core] Code Review: SSLContext shell and basic specs

2009-08-20 Thread Kevin Radcliffe
http://github.com/kradcliffe/ironruby/commit/39c45cd08877af633437b62dd1fb7e8787863985 Provides a shell as a placeholder for the eventual implementation of OpenSSL::SSL::SSLContext. This gives better compatibilit

Re: [Ironruby-core] Watir under IronRuby Error

2009-08-20 Thread Jimmy Schementi
I think it only uses dl/import for FireWatir (it uses a firefox hash plugin to communicate); IE support should just depend on win32ole. Anyone want to dig into what watir is using dl/import for? ~Jimmy Sent from my phone On Aug 20, 2009, at 4:14 AM, "Ivan Porto Carrero" mailto:i...@flanders.co

[Ironruby-core] Weak References and IronRuby

2009-08-20 Thread Martin Smith
Hello, I need to use a weak reference, and I was looking for a bit of guidance. Is there any problems with using System::WeakReference or the IronRuby library's WeakRef. I imagine WeakReference is preferable as WeakRef uses finalizers to zero out the WeakRef. Are there any issuse that anybody co

Re: [Ironruby-core] Time.now and System::Text::EncoderFallbackException

2009-08-20 Thread Maxim Maslov
Hi Tomas, Thanks a lot - my problem is that I did not understand that it's a problem of inspect, not of Time.now itself :) I've tried the build from dlr-26718.zip (the latest I have) - it works fine. Thanks again, Maxim -Original Message- From: ironruby-core-boun...@rubyforge.org [mail

Re: [Ironruby-core] Time.now and System::Text::EncoderFallbackException

2009-08-20 Thread Tomas Matousek
DataTime.inspect is supposed to use invariant culture for formatting the time. I think I've fixed this recently. Can you try the latest build? >>> Time.now => Thu Aug 20 09:19:50 -07:00 2009 As a workaround you can do Time.now.ToString('hh mm ss, MMM ') for example. Note that MRI 1.8 doesn'

[Ironruby-core] Time.now and System::Text::EncoderFallbackException

2009-08-20 Thread Maxim Maslov
Hi all, I've got a strange problem with Time.now (and System.DateTime.Now, of course) when the current culture is set to 'ru-RU', 'pl-PL' or some other cultures: V:\PROGS\Ruby\Migrate\ClearQuest>D:\Progs\Ruby\IronRuby-0.9.0\bin\ir.exe IronRuby 0.9.0.0 on .NET 2.0.50727.3082 Copyright (c) Microsof

Re: [Ironruby-core] Watir under IronRuby Error

2009-08-20 Thread CDurfee
I'm sure you know this, but Watir has been ported to .NET in the form of WatiN (http://watin.sourceforge.net/). Perhaps it would suit your needs. -- Chuck Durfee Ivan Porto Carrero Sent by: ironruby-core-boun...@rubyforge.org 08/20/2009 05:14 AM Please respond to ironruby-core@rubyforge.or

Re: [Ironruby-core] Watir under IronRuby Error

2009-08-20 Thread Ivan Porto Carrero
Doesn't watir use C-based extensions. In that case they have to be ported to .NET in order to use it. --- 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/carre

[Ironruby-core] Watir under IronRuby Error

2009-08-20 Thread Qwerty Qwerty
Hi all, I am trying to get my Watir scripts running under IronRuby, but am encountering the following error: :0:in `require': no such file to load -- dl (LoadError) from C:/ironruby-0.9.0/lib/ruby/1.8/dl/import.rb:3 from ./watir/winClicker.rb:53 from ./watir.rb:42 Any hel