|
|
|
|
|
by pacemkr
5172 days ago
|
|
Here's an anecdote: In my experience, finding something in Python docs takes a total of five seconds, including passing through the "Google gateway". Finding something in Rails reference has been downright impossible. This is a function of Ruby itself, a very magical language, magic that fails to communicate in auto-generated documentation. How does this work? Good luck finding out, but you'll feel very clever three hours from now. Admittedly, I've had very limited exposure to Rails, but perhaps that makes my experience even more relevant. |
|
I tend to have a very easy time finding the documentation I need, in both ruby and rails. Sometimes that means a google search, but if I want more fine-grained implementation details, I normally crack open the gem in question with `bundle open` and read the source. I know that a lot people from a Java background for example prefer code-completion in their IDE's to reading source, but it seems to be the most comfortable way to find what you're looking for, in ruby at least.