Skip to content

Instantly share code, notes, and snippets.

View Roar1827's full-sized avatar

Ryan Clements Roar1827

View GitHub Profile
@iangreenleaf
iangreenleaf / gist:b206d09c587e8fc6399e
Last active May 5, 2024 14:52
Rails naming conventions

Rails naming conventions

General Ruby conventions

Class names are CamelCase.

Methods and variables are snake_case.

Methods with a ? suffix will return a boolean.