Update: Fabio Akita over on AkitaOnRails has posted an excellent article titled The Best Environment for Rails on Windows. It is a walkthrough for creating a robust Windows-based Rails development platform.
Here's an overview of the issues with Rails on Windows:
- Ruby and Rails are relatively slow on Windows
- Certain gems and libraries don't work on Windows (example)
- Fixed:
Gems itself is currently broken on Windows (although I suspect this will be fixed)
- The community is mostly on either Mac or Linux (This is a particularly hard one to deal with; nobody wants to be alone, scratching out their time surviving on one island when the rest of the tribe are partying and generally having fun and getting along great over on the other island. Community is important. It seems that most Windows developers that start with Rails rather quickly switch to a Mac or Linux.)
Deploying Rails is hard enough already on a *nix based server (there are whole books written about it and groups dedicated to it); deploying on Windows is even harder. Most (all?) Rails hosts are *nix based and deploying from Windows to a *nix server can be another step up the pain ladder. Deploying on *nix is now quite easy thanks to Phusion Passenger. Unfortunately, it's not available for Windows, and is likely never to be. That's not really a problem, though, if you just stick to using Mongrel on your local Windows dev machine.
If you want more technical detail, the following are required reading:
Choice quote from that last one is:
AkitaOnRails: The most obvious thing is that any Gem with C Extensions without proper binaries for Windows will fail. Trying to execute shell commands will fail and RubyInline as well. What else?
Luis Lavena: Hehe, that's just the tip of the iceberg
Having said all that, I don't find developing with Rails on Windows too painful. Using Ruby is, for the most part, a pleasure. I'd avoid InstantRails because, to be frank, it's just as easy to install Ruby properly using the one-click installer, then doing a gem insall rails. If you need Apache and MySQL, WAMP is a good bet, although even these aren't required if you just stick with Mongrel and SQLite.
What I've taken to doing recently is running VirtualBox with an instance of Ubuntu Server that closely mirrors the deployment server. I map a network drive to the Ubuntu Server, then I edit and run my code directly on the VM. It uses hardly any memory (it's currently using ~43MB; contrast that with Firefox, which is using ~230MB) and Rails actually performs better than running it natively on Windows. Plus you can experiment with your virtual server in relative safety. It's a really nice setup, I highly recommend it.
Finally, here are a couple of Ruby/Rails blogs aimed at Windows users:
BTW, this is the third time I've written this; the first time I lost everything because I had managed to tab out of the textarea and I then hit backspace, which took me back a page which, in turn, lost everything I had written. The second time, when I hit Post Your Answer, I got the "StackOverflow is down for Maintenance" message. On clicking back my post had once again disappeared. AAARGH!!