Skip to content

Instantly share code, notes, and snippets.

View lcpriest's full-sized avatar

Lachlan Priest lcpriest

  • Singapore, Singapore
View GitHub Profile
@lcpriest
lcpriest / gist:4f329d51fafbbfc167dd
Created November 14, 2015 04:36 — 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.