InterviewSolution
Saved Bookmarks
| 1. |
What role do sub-directory app/helpers and app/controllers play? |
|
Answer» App/controllers: A CONTROLLER handles the WEB request from the user. Rails search the controller sub-directory for controller classes. App/helpers: This sub-directory HOLDS HELPER classes that are used to assist the controller classes. |
|