vote up 0 vote down star

is it better to develop ruby on rails in a) windows b) linux or c) mac. why ?

edited :

the reason why i am asking this is that i heard that developing ruby on rails in windows is not as stable/good compared when you used ruby on rails in mac. (not sure though if that is true or not).

plus the fact that David Heinemeier Hansson (creator of Ruby on Rails) seems to be using Mac, so initial impressions seems to be Ruby on Rails applications and Mac goes well together.

flag

2  
I think it's just a matter of preference and habit. If you used to be a windows-centric person and just getting started with RoR or whatever languages you're interested, it is best to stick with old environment (that is windows). You'll have less platform specific command to learn because you aren't just dealing with the language itself but also with a new environment (OSs). The same goes for other platforms. – eddyyanto Apr 30 at 1:48

10 Answers

vote up 12 vote down check

I strongly advise you don't develop on Windows. Why? First, there are a lot of things that break on Windows with every upgrade and the majority of gem or plugin creators don't use windows so they don't care about windows and don't run tests on it(there are several big name people who have flat out said that windows is NOT their problem it's yours). You'll find the *nix vs Windows problems will bite you in the ass again and again. Pathnames slashes, minor differences in ssh implementations, console and font problems, rubygems, capistrano, etc...

What will end up happening after a while is that you will always have this voice in the back of your head every time you have to debug something saying "Is this a problem only on Windows?" and that little voice is a cost to you..using up some of your battery every single day.

Macs are more expensive in terms of upfront dollars (which sadly I don't have) and linux platforms are more expensive terms of spending a day or two trying to get your wireless to work but those are upfront one time costs. The nagging insecurity of using Windows for Rails development is an ongoing cost. At least until the community starts rejecting things that are not truly cross platform.

As an example look at cucumber. For some reason a test framework is dependent on a particular console configuration not available in windows. So to use it in Windows you have to change the font in your console and change the code page in your console. Otherwise the letter "a" disappears from all the output. Why? Because it works fine for *nix systems and gives you pretty colours (I think this is a huge flaw and very very poor design choice even if you ignore windows).

You'll also feel like the guy who farted in the elevator every time you bring up a windows issue.

I say all this as some who has to use windows for his development platform at the moment. Hey, what's that smell?

[late edit: Ruby is also about 3 times slower on windows. This will impact your willingness run your tests all the time and hurt your TDD feedback cycle]

link|flag
thanks for your input, this is the sort of answer i'm expecting. choices that seems minor or little at the start and ends up bringing a lot of headaches in the end. – Michael Ellick Ang May 1 at 0:02
I tried RoR on windows. Nice way to get a headache. – Arnis L. May 24 at 12:54
I concur. Don't mean to be a thread digger but did a quick search to see how ROR's support for Windows have improved since bailing out this Feb for Python and I'm very disappointed to see Phusion Passenger still is not supported on Windows. Furthermore, after handrolling my OWN postgres driver and after which, I was too exhausted to test fully, I declared never to touch Ruby/RoR again. Too much work. Remember, support for Ruby/RoR on Windows platform is simply not there (same level as other languages eg Python, C++, C#). As a developer, its suicide. As a hobby or side project, maybe? – cygnus atratus Jul 3 at 9:45
vote up 7 vote down

Shouldn't matter, whatever you're most comfortable with. I've done all three.

I suppose Windows is a little uncomfortable because of not being unix-based, the CLI is a bit more clunky.

(But if you use a tool like NetBeans, you don't really even need the CLI much)

link|flag
I recommend ALL windows user to install Cygwin first thing after installing a machine. Gives you a great shell (bash) that everyone is familiar with and all the utilities you are used to. – Trey Apr 30 at 0:26
Wwhen I said the Windows CLI, I was including cygwin, but cygwin is a poor substitute for a real Unix CLI. Everything seems like it's a little clunky/broken/off--not unusably so, just annoyingly so. Sometimes I'm tempted to install DSL as a windows service and just SSH in to do command-line work. – Bill K Apr 30 at 17:12
vote up 3 vote down

Ruby on Rails works well on all platforms, but tool support varies. For instance, TextMate is a favorite editor amongst Rubyists, and it's Mac only. You'll be able to find lots of helpful tools for working with RoR in TextMate, so it might be best to do RoR development on a Mac.

I use Mac and Linux myself.

link|flag
vote up 1 vote down

A Unix based system will offer you a path of lest resistance as all gems are available/compilable on these systems, which isn't as easy on a Windows machine. It's not impossible on Windows but you'll spend more time getting it to work rather in some cases rather than doing work.

Of those Unix systems my preferred is a Mac, it's got all the Unix power as well as all the interface niceties that can be lacking from your linux system, and of course I couldn't live without my daily dose of TextMate, so Mac it is.

link|flag
vote up 1 vote down

I recommend against using windows when developing an app that will later be deployed on a linux system. If you're developing an app for practice, Windows is fine.

The issue is that if you're aiming at linux, then you'll want to have a full stack on your development machine: a web server, a dbms, perhaps memcached, etc. While it is possible to load all of that onto windows (I've done it), it will take longer than on a linux machine, will be slower and you'll have more difficulty finding assistance when something doesn't work.

Also, you can run into gem and plugin support issues on windows. Eg \ instead of / for directory paths and other weirdness. While rubyists will try to be helpful, windows support is sometimes limited since most RoR work is done on Mac or Linux machines. Eg Capistrano has had problems running on Windows (they may be fixed now).

As an alternative, you can use Windows as your desktop machine, but use a linux machine as your development server for running the app. Any old pc will run linux just fine. Use samba to remotely access and edit the files from your windows machine. The linux machine does not need a display, you'll only use it remotely.

Just change your app's config/environments/development.rb to include

config.action_controller.consider_all_requests_local = true

so you can see stack traces from your browser running on your windows machine.

Regards,

Larry

link|flag
vote up 0 vote down

Doesn't matter, If you're a purist then your dev environment should as closely match your production enviroment as possible with regard to Operating System and version of the Ruby and Rails. But really it doesn't matter much.

link|flag
vote up 0 vote down

Some gems work on Mac but not some flavors of Linux (such as gitjour when I last tried it).

Using a Mac might be good or bad, depending on whether you want to know that whatever you develop will be able to work on any other OS.

link|flag
vote up 0 vote down

I've done light rails development on both OSX and Linux (Ubuntu), and I found the differences to be almost imperceptible (in terms of ruby and rails... obviously the desktop environments are a lot different between the two OS's).

As others have said, most ruby/rails tutorials, gems, plugins, etc. are oriented toward Unix type systems, so I would assume there may be some annoying hiccups trying to do ruby/rails development in Windows, unless of course you're using IronRuby. :-)

A low hassle alternative for setting up a Unix environment for Rails development is to run one of the easier to use Linux distributions, like Ubuntu or Fedora under virtualization software like VMWare, VirtualBox, VirtualPC, etc.

link|flag
vote up 0 vote down

I agree with many of the previous posts that Rails on Windows can be an issue. Its simply the case that many people developing for Rails are on Macs or Linux and as a result Windows bugs are not found, this is particularly an issue with plugins.

One issue with Rails is IDEs. TextMate on the Mac seems to be a popular choice, yet Linux and Windows options are pretty fragmented. Normally I wouldn't worry about this, but I have found that Rails becomes much more manageable when you have IDE support. In general there are lots of files located in a reasonably complex directory structure so having an IDE which allows you to easily find files your looking for is an awesome productivity boost.

Another thing you may want to consider is what your deployment environment looks like. For example, may people deploy there Rails apps on Linux servers. In that case, you may be able to skirt around bugs by developing on OS X, but unfortunately those bugs will crop up when you go to deploy your new software. That is the last place you want to be debugging code. Of course you should be testing your code in a staging environment first, but all too often people skip this step.

link|flag
vote up 0 vote down

While searching for the answer to this question due to always having to hack my way around windows to things to work while developing in Ruby, I can say that if you have the option, use Linux or Mac. I've officially started using Ubuntu 9.04 as of today and here are the reasons why:

1) Can't do any ssh things like use Capistrano, vlad, create gems for rubyforge, etc. You can do these things using cygwin, but it's such a pain in the arse to use cygwin and windows working for everything.

2) The final straw was when trying to kick off background tasks in a rails app only to realize that windows can't fork processes.... didn't even bother with cygwin for this one, just switched to Ubuntu so I don't have to keep working around these issues.

Ubuntu 9.0.4 is pretty hot though, quite impressed so it may not be so bad.

link|flag

Your Answer

Get an OpenID
or

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