jr-rails-classic

Installation
SKILL.md

Rails Classic Coding Style

Write Rails application code following 37signals conventions. Rich domain models, CRUD controllers, database-backed everything, Minitest with fixtures.

Core Workflow

  1. Use generators firstrails g model, rails g controller, rails g migration. Generators produce correct file structure, test stubs, and route entries in one shot.
  2. Implementation order — models → controllers → views → tests.
  3. Ship, Validate, Refine — prototype to production, learn from real usage.
  4. Let it crash — use bang methods, let Rails handle RecordInvalid with 422s.

Guardrails

Installs
44
GitHub Stars
27
First Seen
Mar 30, 2026
jr-rails-classic — julianrubisch/skills