Rails tutorial in depth plugin

I want to learn rails plugins in great detail, so I can understand how rails plugins are developed in github.

I am looking for something that happens at a high level, but then described in detail.

plugins, generators, etc.

does it exist?

+5
source share
2 answers

I think you are really looking for a deep understanding of Ruby Object Model and Ruby Metaprogramming. A critical clear understanding of both of these is critical to creating a variety of useful rails plugins. I would not recommend the dive head first to develop plugins without these two.

Unfortunately, I do not have many resources that would give you a deep understanding of them, but here is something to get you started.

http://www.hokstad.com/ruby-object-model.html

http://www.ruby-doc.org/docs/Understanding%20Ruby%27s%20Object%20Model/ChrisPine_UROM.ppt

http://www.rubyfleebie.com/3-steps-to-understand-how-classes-and-objects-work-in-ruby/

, - Ruby Metaprogramming Dave Thomas, The Ruby Way.

, . .

+3

All Articles