Welcome to the kool-aid club! Seriously, it's fun to see people still creating their first Rails app and enjoying it so much. I don't do Rails all day, but when I want to get something up in a quick and easy fashion, there's no doubt that it's the way to go.
What did you find that was confusing/unclear/not working? Rails 3.1 is now a pretty big beast, and when you add the rvm/github/heroku surrounding environment, there's a lot to learn. The Rails community is very interested in keeping its first-time-experience excellent, so give feedback on IRC, blog posts, or github issues for anything that wasn't immediately fun and clear.
bundler was the biggest mystery. Many times after I thought everything was set up correctly, I'd try to launch a console only to be told I was missing Gems. This isn't a big deal until I'm on an airplane and can't re-download the Gems -- but why everything disappeared to begin with is still a mystery to me.
Thanks for the writeup. I've been using bundler for about 6 months (and even have the same 'be' alias!) and understand it, I'm just confused when it seems to magically forget about my installed bundle.
I have run into two reasons why this happens unexpectedly:
1. rvm-related. You installed a gemset for 1.9.2, and then either manually switched to another ruby version, or never set that version as your default. So the next time you come into the project, your ruby version is different and the gemset isn't there.
2. bundler-related: because of other gemsets and your bundler/rvm versions, you need to run commands with the 'bundle exec' prefix (e.g. 'bundle exec rails s') in order to use the context of the current bundle.
The faffing around with RVM gemsets vs Bundler gemsets is why I use rbenv (https://github.com/sstephenson/rbenv), and use Bundler exclusively to manage gemsets per application.
I have a small group of globally-installed gems for convenience when starting new projects (ie. rails).
(I'm lucky enough to not work on anything that doesn't use Bundler, fortunately.)
> At my last job at a Python shop, we spent a lot of time discussing the merits of Python, its syntax, and how to correctly use it.
This part is what I don't understand. Why would you want to spent a lot of time discussing Python syntax? In my experience Python documentations are the best ones I could found for a programming language (apart from those with broken APIs) and most of time how to correctly use something is written right in the documentation.
You're right, I don't think I chose my words carefully. Maybe I meant programming idioms? At any rate, what I meant was things like map(len, mylist) vs [len(x) for x in mylist] or the readability of a relatively complex list comprehension vs a loop.
Sound like awfully low-level things to discuss, except in the occasional code review where something is glaring. Also, map() and filter() aren't quite deprecated but most would agree that the list comprehension is more Pythonic.
Django was the first Python programming I ever did over 3 years ago, and that probably would be a more fair comparison. If I had played with Django more recently, what would I have said that I didn't?
> I still prefer Python as a general purpose language, but Ruby on Rails is a better solution for web development.
I can understand saying that coming from a PHP background, or if all you've ever played with in Python was a micro-framework like Bottle. But I don't see anything that you mentioned that isn't part of a Python web stack using something like Django. Hence my question.
I don't get this post at all. It's poorly written and is comparing Python (the language) to Rails (the web framework), concluding that it's easier to create a website it Rails?
I've done a lot of crazy things with Rails since leaving IBM - including hot patching modules into a rails server running on Windows using encrypted and signed YAML for module distribution. Ruby lets you do some crazy things... good or bad.
It gives you a sharp enough knife to whittle the Statue of Liberty or cut your hand off. I've found this flexibility much more useful for debugging purposes (redefining methods on the fly) than writing easy-to-follow production code.
What did you find that was confusing/unclear/not working? Rails 3.1 is now a pretty big beast, and when you add the rvm/github/heroku surrounding environment, there's a lot to learn. The Rails community is very interested in keeping its first-time-experience excellent, so give feedback on IRC, blog posts, or github issues for anything that wasn't immediately fun and clear.