views:

77

answers:

2

Where can I find a complete list of Rails helper functions (such as form_for)?

+4  A: 

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.

hakunin
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.
Heidi
You can download or browse the source of the current stable version of Rails (2.3.x) here: http://github.com/rails/rails/tree/2-3-stable
hakunin
A: 

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.

samg
It looks like Chapter 11 covers helpers in detail. The full text of the book is on safaribooksonline.com, for those with subscriptions.
Heidi