Where can I find a complete list of Rails helper functions (such as form_for)?
2 Answers
Most of them are under ActionView::Helpers in documentation.
There are more available, so downloading Rails source and looking under action_view/helpers is likely your best bet.
2 Comments
Heidi
Thanks, but I'm a brand new beginner to Rails, and don't exactly know how to download the Rails source and find that information.
Max Chernyak
You can download or browse the source of the current stable version of Rails (2.3.x) here: github.com/rails/rails/tree/2-3-stable
ApiDock is a pretty good source of documentation. Check out http://apidock.com/rails/browse under ActionView::Helpers.
Also Obie Fernandez's book "The Rails Way" has a comprehensive (I believe) chapter on them.
1 Comment
Heidi
It looks like Chapter 11 covers helpers in detail. The full text of the book is on safaribooksonline.com, for those with subscriptions.