[Ironruby-core] FYI: Tutorial formatting for Silverlight

2009-08-27 Thread Shri Borde
http://github.com/shri/ironruby/commit/bb9c52a7b4488762b904d2a078982100389ac229 Fix Tutorial sample to do formatting of text on Silverlight ___ Ironruby-core mailing list Ironruby-core@rubyforge.org http://rubyforge.org/mailman/listinfo/ironruby-core

[Ironruby-core] Trying to run _why's Camping framework on IronRack / IIS

2009-08-27 Thread Philippe Monnet
I have been leveraging IronRack to try to get a sample Camping application up and running. I seem to be able to require the camping library fine but then as try to hit the famous "Camping.goes :Demo" line, IronRuby return an error stating that the constant # is not initialized. So I tried to do

[Ironruby-core] Threads in IronRuby

2009-08-27 Thread Ivan Porto Carrero
Hi I just took a look at using xmpp4r with IronRuby. Below you find the contents of my console session (I get the same result on windows). You can probably do the same without having a jabber server running locally :) +i...@ivan-mbp:~/projects/xmpp_spike (master)ยป *ir* IronRuby 0.9.0.0 on Mono 2.4

Re: [Ironruby-core] Watir under IronRuby Error

2009-08-27 Thread Shri Borde
The backtrace indicates that the exception was thrown from "set" which would imply that the call to text_field succeeded. Could you break up the line "b.text_field(:name, "q").set("pickaxe")" into two statements to see narrow down where the problem might be happening? Also, could you run with "

Re: [Ironruby-core] Watir under IronRuby Error

2009-08-27 Thread Qwerty Qwerty
Ok, so after hacking watir.rb, I managed to get IE to open and navigate to the URL, but then using the following basic script: require 'watir' # use watir gem test_site = 'http://www.google.com' # set a variable b = Watir::IE.new # open the IE brows