Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

im adding myself #19

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/attenders/alissar.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
var AlissarEitah;
module.exports = AlissarEitah = new Person({
name: 'Alissar',
last_name: 'Eitah',
nationality: 'syrian',
description: 'Js Stuff'
});
8 changes: 5 additions & 3 deletions src/dinners/140916-ood-dinner.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
var Mauro = require('./../attenders/MauroMandracchia'),
alissar = require('./../attenders/alissar'),
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fix indentation here.

MontePulcianoWine = require('./../recipes/wine-monte_pulciano'),
PastaCarbonara = require('./../recipes/pasta-carbonara'),
DessertTiramisu = require('./../recipes/dessert-tiramisu');

DessertTiramisu = require('./../recipes/dessert-tiramisu'),
Greensalad= require('./../recipes/green-salad');
Mauro.brings([ MontePulcianoWine, PastaCarbonara, DessertTiramisu ]);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Alissar your're not bringing look Mauro on top. :-)


var Dinner = new Meal({
Expand All @@ -12,6 +13,7 @@ var Dinner = new Meal({
where: 'Amsterdam'
});

Dinner.addOwner( Mauro );
Dinner.addOwner( Mauro ),
Dinner.addGuest(alissar);

module.exports = Dinner;
12 changes: 12 additions & 0 deletions src/recipes/green-salad.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
ar GreenSalad;
module.exports =GreenSalad = new Recipe({
name: 'salad',
category: 'vegetarin',
composition: [
new Ingredient({name: 'tomato', category: 'vegetable', attributes: ['fresh']}),
new Ingredient({name: 'cucumber', category: 'vegetable', attributes: ['fresh']}),
new Ingredient({name: 'lettuce', category: 'vegetable', attributes: ['fresh']}),
new Manipulation({name: 'slice', desc: 'medium cut'}),
new Manipulation({name: 'mix', desc: 'everything in a big plate'})
];