What is the best place to learn 'advanced' Ruby so I can start contributing to Rails? Any other things I should read/know would be appreciated.
Thanks.
|
What is the best place to learn 'advanced' Ruby so I can start contributing to Rails? Any other things I should read/know would be appreciated. Thanks.
| |||
|
feedback
|
|
Read, adsorb and practice the techniques in Metaprogramming Ruby
Rails infractructure uses metaprogramming techniques pretty freely. It'll be difficult to contribute effectively unless you are conversant in metaprogramming. As a bonus, there is a section in the book that is Rails specific. It doesn't cover all of the techniques that Rails uses, but it'll wet your whistle. | ||||
|
feedback
|
|
This also might help( http://ryanbigg.com/guides/initialization.html ) | |||
|
feedback
|
|
Metaprogramming is easy. Software design is hard. I'd suggest either creating your own projects that can succeed or fail on their own merits, or if you want to contribute to Rails, start off with something relatively simple: fixing bugs, rather than creating new Rails functionality. | |||
|
feedback
|
|
Take the Rails II course from Pragmatic Studio. It actually teaches metaprogramming methods and specifically shows you how the Rais code uses it so you can learn to read the Rails code. Steven Harms had a really nice talk at Rubyconf 2011: http://speakerrate.com/talks/7831-practical-metaprogramming-modeling-thought -- It should be available soon from confreaks, I think. It really teaches how to think with "metaprogramming", which is really just programming, when it comes to Ruby. Also, Dave Thomas has some screencasts about Metaprogramming and the Ruby Object Model on pragprog -- those are a must. | ||||
|
feedback
|