Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View mlwyatt's full-sized avatar
💻
Coding

Marcus Wyatt mlwyatt

💻
Coding
View GitHub Profile

Rails naming conventions

General Ruby conventions

Class names are CamelCase.

Methods and variables are snake_case.

Methods with a ? suffix will return a boolean.