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.

link|improve this question

feedback

4 Answers

up vote 6 down vote accepted

Read, adsorb and practice the techniques in Metaprogramming Ruby

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.

link|improve this answer
feedback

This also might help( http://ryanbigg.com/guides/initialization.html )

link|improve this answer
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.

link|improve this answer
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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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