ok, so i've just switched from enterprise c#, asp.net mvc, asp web forms after developing since the beta of the .net platform to rails.
Why rails and not django? I've been checking out both but i ultimately chose rails because for the following reasons.
- FAST(ER) DEVELOPMENT - People argue that django is faster because of the admin interface. Just like django you can build fast with rails, if you just plain rails and no gems you can probably develop a bit faster with django because django generates admin screens. But the excellent gem active_admin http://activeadmin.info/ is there to plug that hole so when using that you are just as quick. If you then add up all the gems that are out there it becomes a fast blazing delivery machine.
- THE SUITE - Rails is not just development, rails is functional testing, performance testing and deployment all ino. Especially if you use cucumber of capybara you can fully integrate test your app. Building your app is one thing, but when you release 10 times a day like github, easy or shopify you want to make sure your tests work. Rails has good gems for that and a brilliant ecosystem to support it.
- THE ECOSYSTEM - Rails comes with gems, gems are little reusable libraries people make available for you. Everytime a kickass gem comes auth it feels like i'm happy and reborn again. For instance active_admin for admin screens, omniauth for easy authentication using FB, Twitter, Github whatever. It's like an iPhone that gets better with every app.
- DEPLOYMENT - Rails is build for deployment, look at capistrano or heroku . Look at tools like vagrant with chef. And now bushido coming out for app store style deployment. Furthermore, Travis CI, is there to test your code.
- THE COMMMUNITY - Rails people are awesome, they wear glasses and thus are instant hipsters (ruby rags). I am unfortunately not so awesome (20/20 vision) but one day i will have glasses too. /J no rails community is very big and usually have cool and smart and pragmatic people involved.
To be honest, i've been developing for last 10 years enterprise based for clients such as Sony ericsson, ikea and other large clients. I've been looking for platforms and frameworks that allow me to put best practices (test driven development, automated deployments, continuous delivery) and rails is the one that provides it all to me.
Any cons you say?
Some would say rails doesn't scale. I think that has generally be debunked, by now. However, I say nothing scales if its in the wrong hands. I believe ruby is a tiny bit slower than python, but with the new release its getting faster now. Github runs rails, some other amazing companies do to. Who's using Ruby on Rails in production?
But i would happily buy more hardware for all the goodness that rails has to offer and the increased dev speed and community i get with rails. Also martin fowler, a pretty smart guy wrote lots books and worker at thought works put this out re rails http://martinfowler.com/bliki/EvaluatingRuby.html
Bottom line though.
Go out, try them both. Look at the full spectrum that comes in to play building, and maintaining and testing an app. And make your decision then.