Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save lamont-granquist/009c0ee9c3bd2c3cb88a9e25701ad220 to your computer and use it in GitHub Desktop.
Save lamont-granquist/009c0ee9c3bd2c3cb88a9e25701ad220 to your computer and use it in GitHub Desktop.
class Car
def initialize
self.all_cars << self
end
def self.all_cars
@all_cars ||= []
end
def self.reset!
@all_cars.empty!
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment