ruby-rails-best-practices
Installation
SKILL.md
Ruby on Rails Best Practices
Master Rails conventions and best practices for building maintainable Ruby on Rails applications.
When to Use This Skill
- Building Rails web applications
- Creating Rails APIs
- Optimizing Rails performance
- Following Rails conventions
- Code reviews for Rails projects
Core Patterns
RESTful Controllers
class UsersController < ApplicationController
before_action :set_user, only: [:show, :edit, :update, :destroy]