Skip to content

Instantly share code, notes, and snippets.

@Tharwat96
Tharwat96 / rails_naming_conventions.md
Last active March 26, 2020 14:48 — forked from iangreenleaf/gist:b206d09c587e8fc6399e
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.