action-controller
Installation
SKILL.md
Action Controller
Comprehensive guide to Rails controllers, request handling, filters, and responses.
Controller Basics
Naming Conventions
| Convention | Example |
|---|---|
| Class name | ArticlesController (plural + Controller) |
| File name | articles_controller.rb |
| Views directory | app/views/articles/ |
| Route resource | resources :articles |