I've just installed Ruby In Steel Text Edition (01.02.0376) on XP SP2, and used it to install Ruby/Rails/MySQL etc as I haven't done RoR dev on my PC before.
I've set up an existing RoR project in Ruby In Steel, and got it working with the debugger, etc. Well, kind of.
Aside: I had to create a new project, and then copy my files over (and Synchronize), as when I try File|New|Project From Existing Code... I get this in a message box:
Class not registered
Looking for object with CLSID: {81A1ED1C-76B9-4363-A838-F413FCCBB606}
Anyway, my main issues are:
1. It takes ages for WEBrick to start when I start debugging my project (via F5) - about 70 seconds before it's loaded the code and started serving pages.
2. It takes ages for a page to be served - about 20-25 seconds.
If I just start the server manually using 'ruby script/server' it starts up in a few seconds, and the pages are served in about 1 second, as I would expect, so I assume my rails/db config is ok.
Possibly an important point is that my DB is postgres on another machine, but I noticed that pages took ages to be served even when the DB wasn't being accessed (I know this because I misconfigured postgres initially, so it was only when I tried to log in to my app that it hit the DB and failed. The initial login page took ages to serve, even though it clearly wasn't accessing the DB).
On a simple 'empty' project created with the project dialog, even a simple 'Hello, world' template file still takes about 4 seconds to be served (i.e. I create an index method in my controller, and create index.rhtml with a simple line of text in it).
Is there any reason why it's so slow? Is this why you call Cylon the 'fast' debugger?

While I'm here, another question - when trying out the debugger, I added a simple method to my main controller to assign a couple of local variables, so try out the debugger. When I step over these lines, sometimes I end up back in server.rb (instead of moving to the next line) - is this a deficiency of the normal ruby debugger?