Skip to content

Instantly share code, notes, and snippets.

View boguz's full-sized avatar
💭
Hello world! :)

Luis Pato boguz

💭
Hello world! :)
View GitHub Profile
@iangreenleaf
iangreenleaf / gist:b206d09c587e8fc6399e
Last active April 2, 2024 18:48
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.