module HungryVegan class Restaurant attr_accessor :id, :name, :address, :rating, :phone_number, :url, :zip, :matching_zip_codes @@all = [] def initialize end def self.all @@all end def self.find_or_create(attributes_hash, zip) restaurant= self.all.find {|object| object.id ==attributes_hash["id"]}||self.create(attributes_hash, zip) restaurant.matching_zip_codes<