Add method to child class
class Pet attr_accessor :name, :age, :gender, :color end class Cat < Pet end class Dog < Pet def bark puts "Woof!" end end