Skip to content

Instantly share code, notes, and snippets.

View vikk2411's full-sized avatar

Vikas Verma vikk2411

View GitHub Profile
@vikk2411
vikk2411 / gist:31cb03f3c5c20c14c024
Created October 19, 2015 08:08 — 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.