Re: [Ironruby-core] WATIR on IronRuby?

2014-03-07 Thread Pascal Normandin
Hello, I've used WatiN in the past. Take a look http://watin.org/ Pascal -Original Message- From: ironruby-core-boun...@rubyforge.org [mailto:ironruby-core-boun...@rubyforge.org] On Behalf Of Richard S. Sent: Friday, March 7, 2014 7:39 AM To: ironruby-core@rubyforge.org Subject: [Ironrub

Re: [Ironruby-core] ruby script in c# application

2011-12-22 Thread Pascal Normandin
Hello, Here is an example of this http://blog.jimmy.schementi.com/2009/12/ironruby-rubyconf-2009-part-35.html Pascal On Thu, Dec 22, 2011 at 3:35 PM, rubix Rubix wrote: > Hi, > > I just installed IronRuby and I want ot know how to use a ruby script in > .Net c# application > visual studio 2008

Re: [Ironruby-core] WatiR with IronRuby

2010-03-01 Thread Pascal Normandin
Hello, I've been using WatiN http://watin.sourceforge.net/ -Original Message- From: ironruby-core-boun...@rubyforge.org [mailto:ironruby-core-boun...@rubyforge.org] On Behalf Of Mohammad Azam Sent: March-01-10 10:09 AM To: ironruby-core@rubyforge.org Subject: [Ironruby-core] WatiR with Ir

Re: [Ironruby-core] Create pseudo sandbox for hosted IronRuby script

2010-02-08 Thread Pascal Normandin
e file system. Pascal Normandin protected static ScriptRuntime CreateIronRubyRuntime(bool runInSandBox) { // Setup the ruby engine in a Sandbox var rubySetup = Ruby.CreateRubySetup(); rubySetup.Options["InterpretedMode"] = tr

[Ironruby-core] Problem with Arrays

2009-12-15 Thread Pascal Normandin
Hello, I think I have found a problem with the Array delete_if method. If I do the following when a do the arr2 = Array.new arr I get a nil value >>> arr = ["asd", "qwe", "zxc"] => ["asd", "qwe", "zxc"] >>> arr.delete_if{|x| x == "qwe"} => ["asd", "zxc"] >>> arr2 = Array.new arr => [nil, "asd"]

Re: [Ironruby-core] Thread Priority

2009-10-25 Thread Pascal Normandin
Hello, I have done a very basic implementation of a while back but I did not finish the modifications to the specs to test this. Here are the commits if you want to grab it http://github.com/PascalN2/ironruby/commit/3a0373379b79dbe7fff603ad61ab726d7 de7f305 http://github.com/PascalN2/ironruby/co

Re: [Ironruby-core] Running IR in an isolated AppDomain

2009-10-03 Thread Pascal Normandin
e.CreateScriptSourceFromString("output.write(helper.GetFileContent( ))"); . Console.WriteLine(sb); Tomas From: ironruby-core-boun...@rubyforge.org [mailto:ironruby-core-boun...@rubyforge.org] On Behalf Of Pascal Normandin Sent: Saturday, October 03, 2009 8:57 AM To: ironruby-co

[Ironruby-core] Running IR in an isolated AppDomain

2009-10-03 Thread Pascal Normandin
added a check on the AppDomain Name and it is executing in the Main AppDomain not the IR AppDomain. Does anyone have an idea why it is behaving like that? Is this the expected behaviour? Or do you have any tip to help me troubleshoot and find the root of this? Thank you; Pascal Normand

Re: [Ironruby-core] Code Review: Thread priority

2009-08-06 Thread Pascal Normandin
include the new Initializers.Generated.cs in the commit. This does not automatically get generated during a build, and so needs to be in checked in to GIT. From: ironruby-core-boun...@rubyforge.org [mailto:ironruby-core-boun...@rubyforge.org] On Behalf Of Pascal Normandin Sent: Thursday, August 06

Re: [Ironruby-core] Code Review: Thread priority

2009-08-06 Thread Pascal Normandin
lto:ironruby-core-boun...@rubyforge.org] On Behalf Of Pascal Normandin Sent: Tuesday, August 04, 2009 6:13 AM To: ironruby-core@rubyforge.org Subject: [Ironruby-core] Code Review: Thread priority Modification to be able to set and read the priority of a thread. Main c

[Ironruby-core] Code Review: Thread priority

2009-08-04 Thread Pascal Normandin
Please let me know how that looks. Thanks; Pascal Normandin ___ Ironruby-core mailing list Ironruby-core@rubyforge.org http://rubyforge.org/mailman/listinfo/ironruby-core

Re: [Ironruby-core] Thread priority

2009-05-16 Thread Pascal Normandin
ill you be able to do relative priorities < -2 and > 2? Also, have we received a contribution agreement from you yet? Thanks, JD …there is no try From: ironruby-core-boun...@rubyforge.org [mailto:ironruby-core-boun...@rubyforge.org] On Behalf Of Pascal Normandin Sent: Thursda

Re: [Ironruby-core] Thread priority

2009-05-14 Thread Pascal Normandin
Hello, I’ve looked into this and it is pretty easy to implement. But I have a question before I send any modification. The Clr Thread works with 5 levels (Lowest, BelowNormal, Normal, AboveNormal and Highest) but based on the ruby doc a ruby thread works with an integer for priority. So I