Skip to content

Instantly share code, notes, and snippets.

@erubboli
Created September 7, 2010 09:44
Show Gist options
  • Save erubboli/568088 to your computer and use it in GitHub Desktop.
Save erubboli/568088 to your computer and use it in GitHub Desktop.
class PizzaFactory
def create_pizza( type )
case type
when :ham_mushroom
HamMushroomPizza.new
when :deluxe
DeluxePizza.new
when :hawaiian
HawaiianPizza.new
else
raise "The pizza type #{type} is not recognized."
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment