rails-presenter
Installation
SKILL.md
Rails Presenter Generator (TDD)
Creates presenters that wrap models for view-specific formatting with specs first.
Quick Start
- Write failing spec in
spec/presenters/ - Run spec to confirm RED
- Implement presenter extending
BasePresenter - Run spec to confirm GREEN
Project Conventions
Presenters in this project:
- Extend
BasePresenter < SimpleDelegator - Include ActionView helpers for formatting
- Delegate model methods via SimpleDelegator
- Return HTML-safe strings for badges/formatted output
- Use I18n for all user-facing text