Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 204 Bytes

class-naming.md

File metadata and controls

12 lines (9 loc) · 204 Bytes

Ruby Naming Convention > Class Naming

PascalCase

  • Begin with an uppercase letter
  • Preferably a noun e.g. Car, Bird, MountainBike
  • Avoid acronyms and abbreviations
class Car
    ...