Created
July 20, 2016 13:44
-
-
Save novohispano/384d83bedb2d95c01b4a08de2b6344a0 to your computer and use it in GitHub Desktop.
foodsy.rb
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if preferences.vegetarian? | |
if preferences.vegan? | |
'tofu' | |
else | |
if preferences.gluten_free? | |
'milk' | |
else | |
'pasta' | |
end | |
else | |
'raw bloody steak' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment