vote up 10 vote down star
9

In the installation documentation to RoR it mentions that there are many limitations to running Ruby on Rails on Windows, and in some cases, whole libraries do not work.

How bad are these limitations, should I always default to Linux to code / run RoR, and is Iron Ruby expected to fix these limitations or are they core to the OS itself?

EDIT Thanks for the answer around installation and running on Linux, but I am really trying to understand the limitations in functionality as referenced in the installation documentation, and non-working libraries - I am trying to find a link to the comment, but it was referenced in an installation read me when I installed the msi package I think

flag

11 Answers

vote up 24 vote down check

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!!

link|flag
1  
What a great, complete answer, and what a depressing reality... but I guess that's why I spent hours and hours getting my VirtualBox running on Windows compileyouidontevenknowyou.blogspot.com/2008/12/…. Thanks for your answer: I'll use my VirtualBox. – yar Dec 26 '08 at 20:41
1  
It's not as depressing as it sounds; certainly not as depressing as having to use Java or .NET. Just kidding, just kidding. ;) – Charles Roper Jan 13 at 17:16
It's cool, Charles, I'm still amazed at how platform-dependent we are still... just another 50 years, I figure... – yar Jan 21 at 23:59
Had to reinstall Windows & wasn't keen on getting Rails running on my Windows box again. So installed VirtualBox, created a virt Ubuntu Server, setup shared folders so both can access my Rails code, installed Ruby&Rails, setup port forwarding in VirtualBox so I can access the Rails app from Windows – Guy C Mar 14 at 20:48
vote up 5 vote down

I found getting a development environment up and running with Instant Rails on Windows was really simple. Especially when using Netbeans or Radrails as the IDE.

Less than a 10 minute job.

What did those who struggled find to be the problem?

link|flag
vote up 3 vote down

Personally I found getting Ruby + Rails up and running on windows a piece of cake. From download to browsing to my first 'HelloWorld' app took me all of 15 minutes. I didn't even bother with any of the InstantRails stuff.

Subsequently I can't say I encountered any of the reported speed problems or issues with Gems under Windows.

These guys also do a nice Ruby developers add on for Visual Studio:

http://www.sapphiresteel.com/

link|flag
If you've never used Rails on OS X or under *nix, then you probably won't notice the speed difference. It's when you contrast the two that the difference becomes apparent. – Charles Roper Oct 3 '08 at 15:54
Perhaps, but the point I'm making is that there was nothing noticably slow that made me think 'hell this is running like a dog'. – Kev Oct 3 '08 at 16:18
vote up 2 vote down

When I last fiddled around with Rails on windows, I used Instant Rails and found it to be a fairly painful process, except for the lack of updates to Instant Rails (which, from the look of the website is still a little bit of a problem, as instant Rails 2.0 uses ROR 2.0, while the newest version is 2.1). You might also look into the answers to this question as it mentions a number of other ways to get RoR running on windows easily.

link|flag
It's hardly difficult to install Rails 2.1 'gem update rails' – RichH Oct 2 '08 at 23:07
@Paul Wicks Do you really mean painful? @RichH I seem to remember needing a "gem update -system" as well (I did whatever the beta Ruby on Rails book from the pragmatic programmers said), but I agree it isn't hard to upgrade – Steve Bosman Oct 3 '08 at 13:07
vote up 1 vote down

You have windows options for getting everything up and installed, such as Instantrails:

However, my personal experience with trying to get colleagues up and running on windows is that it's a pretty painful experience. You should be able to get most (if not everything) running, but be prepared to spend a bit of time mucking round (and getting frustrated).

YMMV

I would probably recommend either Linux or Mac for rails development (but I'm slightly biased against windows, so you may need to take that with a grain of salt).

link|flag
vote up 1 vote down

An option if you're stuck on Windows is to have virtual servers running Linux / BSD / what-have-you.

It solves lots of other problems also (allowing you to try multiple server configurations easily, etc.).

link|flag
vote up 1 vote down

If you can't get away from windows use VMware and run some form of linux (ubuntu is popular). Your No.1 limitation will be compiled gems which do not play nicely on windows.

The majority of tutorials assume you're on some form of *nix, it's when you start to break outside of basic scaffolding when you'll feel the pain. Image manipulation, full-text search and even some db adapters will either only run on *nix or are a pain to setup.

The majority of web hosts run linux too, it's good to be developing on the same platform as your host, to avoid deployment headaches.

link|flag
vote up 1 vote down

In general, Rails performance is a problem on Windows.

As far as your deployment setup, you can either run Rails in FCGI or use mongrel (and set up either Apache or IIS as a proxy). mod_rails (http://www.modrails.com) is the best deployment option for Rails today, but doesn't run on Windows.

You might find more luck using JRuby on Windows to run Rails in whatever JVM environment you want (tomcat, J2EE server, etc).

IronRuby isn't there yet to run Rails in a production environment, but eventually it will be aimed at running Rails inside any ASP.NET environment (IIS).

link|flag
vote up 1 vote down

The biggest limitation of running under Windows is that a loot of things are super slow.

See this thread. For a discussion.

Simple things like "script/console" and running rake tasks will take 5 times longer on Windows than they do on Linux or Mac.

Other limitations are:

No IE6 on Vista. BackgroundRB and a few other gems do not work on Windows.

link|flag
vote up 1 vote down

You could just use Cygwin and it's version of Ruby. That gets rid of the arguments about compiled gems not working on Windows - I've managed to compile a lot of gems that way.

link|flag
vote up 1 vote down

I've been developing Rails on a Windows PC for a couple of years and had no real problems installing back when I first started. However I recently re-built my machine and struggled to get the One-Click Ruby installer working and the latest version of Gems. So this is what I tried.

Option 1: Run a Linux Virtual Machine

I was really impressed with Charles Roper's idea of running Rails within a Linux virtual machine, and this is the route I intially went for. It all went pretty smoothly and I've been documenting it at budanters.blogspot.com. However I've been struggling with accessing the MySQL server (in Linux Virtual Machine) from the Windows host.

Option 2: Use jRuby

I recently installed the Windows version of NetBeans 6.5 Ruby bundle, and without being aware of it, this installs JRuby and the Rails gems. The IDE has a UI to install Gems, and I've now got my old application back up and running in my development enviromnent.

Update November 2009

I now use Netbeans 6.7 on Windows and in the whole I am very happy with it. The only downsides are that it installs JRuby 1.2, and I needed to install JRuby 1.3 manually to get something working (I can't remember what) and I have been completely unable to get deployment working with either Capistrano or Vlad the Deployer to work. Vlad uses Open4 which doesn't work with JRuby.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.