rails-presenter
Installation
SKILL.md
Rails Presenter Generator (TDD)
Creates presenters that wrap models for view-specific formatting with tests first.
Quick Start
- Write failing test in
test/presenters/ - Run test to confirm RED
- Implement presenter extending
BasePresenter - Run test 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