class Bomb def self.activate def explode puts "Booooommmmm" end end end b1 = Bomb.new b2 = Bomb.new b1.explode # Fehler Bomb::activate b1.explode b2.explode