Presets
Presets are shortcuts. They call the same DSL you can write by hand.
Rails Way
preset :rails_way
Defines the Rails MVC architecture.
Rails Strict
preset :rails_strict
Runs rails_way, verifies conventional file names, and checks cycles across Rails components.
Vanilla Rails
preset :vanilla_rails
Runs rails_way, then forbids the abstraction-layer directories that
37signals-style Rails does without: app/services, app/forms,
app/policies, app/decorators, app/presenters, and app/components
must all stay empty. Behavior belongs on models.
See the Vanilla Rails guide for the reasoning and for the rules you can add on top.
Rails Architectures
preset :rails_layered
preset :rails_hexagonal
preset :rails_clean
preset :rails_cqrs
preset :rails_event_driven
These use the default Rails paths for the matching architecture.
They are starting points. Add project-specific rules beside them.