ruby-oop

Installation
SKILL.md

Ruby Object-Oriented Programming

Master Ruby's elegant object-oriented programming features. Ruby is a pure object-oriented language where everything is an object.

Class Definition

Basic Class Structure

class Person
  # Class variable (shared across all instances)
  @@count = 0

  # Constant
  MAX_AGE = 150
Installs
22
GitHub Stars
166
First Seen
Jan 22, 2026
ruby-oop — thebushidocollective/han