Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 193 Bytes

module-naming.md

File metadata and controls

11 lines (8 loc) · 193 Bytes

Ruby Naming Convention > Module Naming

PascalCase

  • Adjoining capitalized words
  • Should resonate with the classes or methods inside the module
module ApplicationHelper
end