Skip to content

Files

Latest commit

2c81e00 · Oct 25, 2019

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
    ...