Why this matters
Classes and modules in Ruby should follow `CamelCase` naming conventions, making them easily distinguishable and improving code organization.
Check if class and module titles use `CamelCase`. If not, suggest renaming them for consistency.
Classes and modules in Ruby should follow `CamelCase` naming conventions, making them easily distinguishable and improving code organization.
Side-by-side examples engineers can pattern-match during review.
class myclass
endclass MyClass
endclass myclass
endclass MyClass
endFrom the same buckets as this rule.