Skip to content

Instantly share code, notes, and snippets.

@ethangunderson
Created April 14, 2010 03:46
Show Gist options
  • Save ethangunderson/365429 to your computer and use it in GitHub Desktop.
Save ethangunderson/365429 to your computer and use it in GitHub Desktop.
#basic ingredients
recipe = {
:name => "pancakes"
:quantity => "17"
:ingredients => [ 'sugar', 'flour' ]
}
#more complex ingredients
recipe = {
:name => "pancakes"
:quantity => "17"
:ingredients => {
{ :name => 'sugar', :qty => '2', :uom => 'Tbs' }
{ :name => 'flour', :qty => '5', :uom => 'cup' }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment