Skip to content

Instantly share code, notes, and snippets.

@rafamaciel
Created April 6, 2021 15:26
Show Gist options
  • Save rafamaciel/4f34b525864e182105478fbce12ce604 to your computer and use it in GitHub Desktop.
Save rafamaciel/4f34b525864e182105478fbce12ce604 to your computer and use it in GitHub Desktop.
{
cocktails: {
// Ingredient quantities are in fl oz.
'Tom Collins': {
ingredients: [
{ kind: "Farmer's Gin", qty: 1.5 },
{ kind: 'Lemon', qty: 1 },
{ kind: 'Simple Syrup', qty: 0.5 },
{ kind: 'Soda', qty: 2 },
{ kind: 'Angostura', qty: 'dash' },
],
garnish: 'Maraschino Cherry',
served: 'Tall',
description: |||
The Tom Collins is essentially gin and
lemonade. The bitters add complexity.
|||,
},
Manhattan: {
ingredients: [
{ kind: 'Rye', qty: 2.5 },
{ kind: 'Sweet Red Vermouth', qty: 1 },
{ kind: 'Angostura', qty: 'dash' },
],
garnish: 'Maraschino Cherry',
served: 'Straight Up',
description: @'A clear \ red drink.',
},
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment