rails-service-object
Installation
SKILL.md
Rails Service Object Pattern
Overview
Service objects encapsulate business logic:
- Single responsibility (one public method:
#call) - Easy to test in isolation
- Reusable across controllers, jobs, rake tasks
- Clear input/output contract
- Dependency injection for testability