Re: [Ironruby-core] IronRuby / Rails Question

2008-05-23 Thread John Lam (IRONRUBY)
Josh Charles: > It looks like you're getting very close to getting rails to run on > IronRuby. What is the endgame for this? Is the goal to eventually be > able to run a rails app on IIS, so deployment is just as simple as > deploying an ASP.NET web application? I've been looking at several > d

Re: [Ironruby-core] IronRuby r112 is out

2008-05-23 Thread Unnikrishnan Nair
John, I saw 112 has FileOps implemented so please discard the patch I send in earlier. Let me know if there are any other area you would like me to help with? Thanks. - Original Message From: John Lam (IRONRUBY) <[EMAIL PROTECTED]> To: "ironruby-core@rubyforge.org" Sent: Friday, May 2

[Ironruby-core] Got a slightly more ambitious Rails functional test running

2008-05-23 Thread John Lam (IRONRUBY)
Here's the controller: class SayController < ApplicationController def hello @name = 'john' end end Here's the view template: Say Hello Hello, <%= @name%> Here's the functional test: require File.dirname(__FILE__) + '/../test_helper' class SayControllerTest < Act

[Ironruby-core] IronRuby r112 is out

2008-05-23 Thread John Lam (IRONRUBY)
This is the release that we used to run the Rails functional test this afternoon. I had to modify two files in Rails to work around some missing functionality in IronRuby today. I've attached these files to this mail. They are: activesupport\lib\active_support\inflector.rb railties\lib\initiali

[Ironruby-core] Code Review: miscfixes2

2008-05-23 Thread Tomas Matousek
tfpt review /shelveset:miscfixes2;REDMOND\tomat Adds Signal class, Kernel#trap, Process#kill stubs. The functionality is not implemented. Fixes attr accessors aliasing. Fixes sockets to deal with 0.0.0.0 IP address. Tomas miscfixes2.diff Description: miscfixes2.diff ___

Re: [Ironruby-core] Signal.trap

2008-05-23 Thread Shri Borde
Some more followup. On Windows, raise (http://msdn.microsoft.com/en-us/library/dwwzkt4c(VS.71).aspx) can only send a signal to the same process synchrously on the same thread. If you do “Process.kill” with MRI running on Windows, it only works if you send a signal to the same process. It does n

Re: [Ironruby-core] Code Review: CatchThrow

2008-05-23 Thread John Lam (IRONRUBY)
Looks good! Thanks, -John -Original Message- From: Tomas Matousek Sent: Friday, May 23, 2008 1:01 PM To: IronRuby External Code Reviewers Cc: ironruby-core@rubyforge.org Subject: Code Review: CatchThrow tfpt review /shelveset:CatchThrow;REDMOND\tomat Implements Kernel#catch and Kernel#

[Ironruby-core] Code Review: CatchThrow

2008-05-23 Thread Tomas Matousek
tfpt review /shelveset:CatchThrow;REDMOND\tomat Implements Kernel#catch and Kernel#throw. Tomas CatchThrow.diff Description: CatchThrow.diff ___ Ironruby-core mailing list Ironruby-core@rubyforge.org http://rubyforge.org/mailman/listinfo/ironruby-cor