nutrition 1.0.0.pre
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/lib/nutrition/ingredient.rb +23 -0
- data/lib/nutrition/ingredients/almond.rb +4 -0
- data/lib/nutrition/ingredients/basil_leaf.rb +4 -0
- data/lib/nutrition/ingredients/cheese.rb +7 -0
- data/lib/nutrition/ingredients/cheese_cottage.rb +7 -0
- data/lib/nutrition/ingredients/cheese_mozzarella.rb +7 -0
- data/lib/nutrition/ingredients/chicken_breast.rb +4 -0
- data/lib/nutrition/ingredients/cumin.rb +4 -0
- data/lib/nutrition/ingredients/egg.rb +4 -0
- data/lib/nutrition/ingredients/egg_white.rb +4 -0
- data/lib/nutrition/ingredients/flaxseed.rb +4 -0
- data/lib/nutrition/ingredients/flour_whole_wheat_pastry.rb +8 -0
- data/lib/nutrition/ingredients/garlic.rb +4 -0
- data/lib/nutrition/ingredients/garlic_powder.rb +4 -0
- data/lib/nutrition/ingredients/jalepeno.rb +7 -0
- data/lib/nutrition/ingredients/meat.rb +4 -0
- data/lib/nutrition/ingredients/milk_low_fat.rb +7 -0
- data/lib/nutrition/ingredients/nonstick_cooking_spray.rb +4 -0
- data/lib/nutrition/ingredients/olive_oil.rb +4 -0
- data/lib/nutrition/ingredients/onion.rb +4 -0
- data/lib/nutrition/ingredients/parmesan.rb +7 -0
- data/lib/nutrition/ingredients/peach.rb +4 -0
- data/lib/nutrition/ingredients/pepper.rb +4 -0
- data/lib/nutrition/ingredients/rice.rb +4 -0
- data/lib/nutrition/ingredients/salt.rb +7 -0
- data/lib/nutrition/ingredients/spinach.rb +4 -0
- data/lib/nutrition/ingredients/tomato_roma.rb +7 -0
- data/lib/nutrition/ingredients/water.rb +4 -0
- data/lib/nutrition/ingredients/yogurt.rb +4 -0
- data/lib/nutrition/plan.rb +5 -0
- data/lib/nutrition/recipe.rb +23 -0
- data/lib/nutrition/recipes/breakfast_muffin_cups_to_go.rb +84 -0
- data/lib/nutrition/recipes/peaches_n_cream_parfait.rb +80 -0
- data/lib/nutrition/recipes/tomato_pesto_egg_white_omelet.rb +92 -0
- data/lib/nutrition/recipes/whole_wheat_crepes_florentine.rb +86 -0
- data/lib/nutrition/serving.rb +9 -0
- data/lib/nutrition.rb +7 -0
- metadata +80 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 6c52988420ef4a84f3a427bcc913ad08a9f0f069
|
|
4
|
+
data.tar.gz: 6d2fef30329b998bdbf30dfbf203170b10968e48
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 0714451dbb2462527da6d889e230fccd26a769eddac1e7105e098e64a416bbd101287e4d63e13527d2c305a26f9ee319ade30f570ae911239a620aa4e6ddb4d6
|
|
7
|
+
data.tar.gz: cd5f1b2c79e7e6bbdb2103430398c4fe65438f006454aaa49b6afdf4892b6c6f05cc4500b011a09631107dc2c9f909218453b8ff2cf3c56bfe12c5ca4705045c
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
class Ingredient
|
|
2
|
+
attr_accessor :portion
|
|
3
|
+
attr_accessor :measurement
|
|
4
|
+
attr_accessor :description
|
|
5
|
+
|
|
6
|
+
def initialize(options = {})
|
|
7
|
+
@portion = options[:portion]
|
|
8
|
+
@measurement = options[:measurement]
|
|
9
|
+
@description = options[:description]
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
def to_s
|
|
13
|
+
s = [portion, measurement, name].compact.join(' ')
|
|
14
|
+
s += " (#{description})" if description
|
|
15
|
+
s
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
def name
|
|
19
|
+
self.class.to_s.split("::").last.gsub(/([^\^])([A-Z])/,'\1 \2')
|
|
20
|
+
end
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
Dir["./lib/nutrition/ingredients/*.rb"].each {|file| require file }
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
class Recipe
|
|
2
|
+
attr_reader :ingredients
|
|
3
|
+
|
|
4
|
+
VEGAN = 'Vegan'
|
|
5
|
+
VEGETARIAN = 'Vegetarian'
|
|
6
|
+
GRAINFREE = 'Grain-Free'
|
|
7
|
+
|
|
8
|
+
BREAKFAST = 'Breakfast'
|
|
9
|
+
LUNCH = 'Lunch'
|
|
10
|
+
DINNER = 'Dinner'
|
|
11
|
+
SALAD = 'Salad'
|
|
12
|
+
SOUP = 'Soup'
|
|
13
|
+
|
|
14
|
+
def tags
|
|
15
|
+
[]
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
def to_s
|
|
19
|
+
self.class.to_s.split("::").last.gsub(/([^\^])([A-Z])/,'\1 \2')
|
|
20
|
+
end
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
Dir["./lib/nutrition/recipes/*.rb"].each {|file| require file }
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
class Recipe
|
|
2
|
+
class BreakfastMuffinCupsToGo < Recipe
|
|
3
|
+
def initialize
|
|
4
|
+
@ingredients = [
|
|
5
|
+
Ingredient::Rice.new(portion: "1", measurement: "cup", description: "cooked instant"),
|
|
6
|
+
Ingredient::Cheese.new(portion: "1/4", measurement: "cup", description: "shredded"),
|
|
7
|
+
Ingredient::Egg.new(portion: "3"),
|
|
8
|
+
Ingredient::NonstickCookingSpray.new,
|
|
9
|
+
Ingredient::MilkLowFat.new(portion: "3", measurement: "tbsp"),
|
|
10
|
+
Ingredient::Jalepeno.new(portion: "2", measurement: "tbsp", description: "diced"),
|
|
11
|
+
Ingredient::Onion.new(portion: "2", measurement: "tbsp", description: "finely chopped"),
|
|
12
|
+
Ingredient::Cumin.new(portion: "1/4", measurement: "tsp", description: "ground"),
|
|
13
|
+
Ingredient::GarlicPowder.new(portion: "1/4", measurement: "tsp"),
|
|
14
|
+
Ingredient::Salt.new(portion: "1/4", measurement: "tsp"),
|
|
15
|
+
Ingredient::Pepper.new(portion: "1/4", measurement: "tsp"),
|
|
16
|
+
Ingredient::Meat.new(portion: "1", measurement: "cup", description: "browned ground chicken, turkey, or extra-lean ground beef"),
|
|
17
|
+
]
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
def meal_type
|
|
21
|
+
[ Recipe::BREAKFAST ]
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
def plans
|
|
25
|
+
[ Plan::EnergyBooster ]
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
def servings
|
|
29
|
+
{
|
|
30
|
+
Serving::PROTEIN => 2,
|
|
31
|
+
Serving::GRAIN => 0.5
|
|
32
|
+
}
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
def directions
|
|
36
|
+
[
|
|
37
|
+
"Preheat oven to 400˚ F. In large bowl, combine 1 cup cooked rice, half of cheese, and 1 egg (beaten).",
|
|
38
|
+
"Lightly coat six cup muffin tin cups with cooking spray.",
|
|
39
|
+
"Press one-sixth of mixture into bottom and sides of each muffin cup.",
|
|
40
|
+
"Bake at 400˚ F for 5-8 minutes, or until lightly browned.",
|
|
41
|
+
"Remove pan from oven and set aside.",
|
|
42
|
+
"In a small bowl, whisk together remaining 2 eggs and milk.",
|
|
43
|
+
"Add chilies, onion, cumin, garlic powder, salt, pepper, and remaining half of cheese to bowl and mix thoroughly; add one-sixth of mixture to each muffin cup.",
|
|
44
|
+
"Return to oven and bake 15 to 20 more minutes, or until set"
|
|
45
|
+
]
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
def portion
|
|
49
|
+
2
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
def calories
|
|
53
|
+
280
|
|
54
|
+
end
|
|
55
|
+
|
|
56
|
+
def fat
|
|
57
|
+
12
|
|
58
|
+
end
|
|
59
|
+
|
|
60
|
+
def saturated_fat
|
|
61
|
+
3.5
|
|
62
|
+
end
|
|
63
|
+
|
|
64
|
+
def carbohydrate
|
|
65
|
+
18
|
|
66
|
+
end
|
|
67
|
+
|
|
68
|
+
def protein
|
|
69
|
+
23
|
|
70
|
+
end
|
|
71
|
+
|
|
72
|
+
def fiber
|
|
73
|
+
1.5
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
def sodium
|
|
77
|
+
388
|
|
78
|
+
end
|
|
79
|
+
|
|
80
|
+
def cholesterol
|
|
81
|
+
249
|
|
82
|
+
end
|
|
83
|
+
end
|
|
84
|
+
end
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
class Recipe
|
|
2
|
+
class PeachesNCreamParfait < Recipe
|
|
3
|
+
def initialize
|
|
4
|
+
@ingredients = [
|
|
5
|
+
Ingredient::Yogurt.new(portion: "1/2", measurement: "cup", description: "nonfat vanilla"),
|
|
6
|
+
Ingredient::Peach.new(portion: "1/2", measurement: "cup", description: "sliced fresh, or frozen and defrosted, unsweetened"),
|
|
7
|
+
Ingredient::CheeseCottage.new(portion: "1/2", measurement: "cup", description: "sliced fresh, or frozen and defrosted, unsweetened"),
|
|
8
|
+
Ingredient::Almond.new(portion: "1", measurement: "tbsp", description: "slivered"),
|
|
9
|
+
Ingredient::Flaxseed.new(portion: "1", measurement: "tsp", description: "ground"),
|
|
10
|
+
]
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
def meal_type
|
|
14
|
+
[ Recipe::BREAKFAST ]
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
def plans
|
|
18
|
+
[ Plan::EnergyBooster ]
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
def tags
|
|
22
|
+
[
|
|
23
|
+
Recipe::VEGETARIAN,
|
|
24
|
+
Recipe::GRAINFREE
|
|
25
|
+
]
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
def servings
|
|
29
|
+
{
|
|
30
|
+
Serving::DAIRY => 1,
|
|
31
|
+
Serving::FRUIT => 1
|
|
32
|
+
}
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
def directions
|
|
36
|
+
[
|
|
37
|
+
"Place vanilla yogurt in a cereal bowl.",
|
|
38
|
+
"Layer peaches over yogurt.",
|
|
39
|
+
"Spoon cottage cheese over peaches.",
|
|
40
|
+
"Sprinkle with almonds and flaxseeds."
|
|
41
|
+
]
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
def portion
|
|
45
|
+
1
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
def calories
|
|
49
|
+
220
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
def fat
|
|
53
|
+
5
|
|
54
|
+
end
|
|
55
|
+
|
|
56
|
+
def saturated_fat
|
|
57
|
+
1
|
|
58
|
+
end
|
|
59
|
+
|
|
60
|
+
def carbohydrate
|
|
61
|
+
24
|
|
62
|
+
end
|
|
63
|
+
|
|
64
|
+
def protein
|
|
65
|
+
20
|
|
66
|
+
end
|
|
67
|
+
|
|
68
|
+
def fiber
|
|
69
|
+
2
|
|
70
|
+
end
|
|
71
|
+
|
|
72
|
+
def sodium
|
|
73
|
+
70
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
def cholesterol
|
|
77
|
+
5
|
|
78
|
+
end
|
|
79
|
+
end
|
|
80
|
+
end
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
class Recipe
|
|
2
|
+
class TomatoPestoEggWhiteOmelet < Recipe
|
|
3
|
+
|
|
4
|
+
def to_s
|
|
5
|
+
'Tomato Pesto Egg-White Omelet'
|
|
6
|
+
end
|
|
7
|
+
|
|
8
|
+
def initialize
|
|
9
|
+
@ingredients = [
|
|
10
|
+
Ingredient::BasilLeaf.new(portion: "1/8", measurement: "cup", description: "finely chopped"),
|
|
11
|
+
Ingredient::Garlic.new(portion: "1", measurement: "clove", description: "finely chopped"),
|
|
12
|
+
Ingredient::TomatoRoma.new(portion: "1", description: "chopped"),
|
|
13
|
+
Ingredient::OliveOil.new(portion: "1", measurement: "tsp"),
|
|
14
|
+
Ingredient::EggWhite.new(portion: "3"),
|
|
15
|
+
Ingredient::Parmesan.new(portion: "1", measurement: "tbsp", description: "shredded")
|
|
16
|
+
]
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
def meal_type
|
|
20
|
+
[ Recipe::BREAKFAST ]
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
def plans
|
|
24
|
+
[
|
|
25
|
+
Plan::FatShredder,
|
|
26
|
+
Plan::EnergyBooster,
|
|
27
|
+
Plan::EnduranceMaximizer
|
|
28
|
+
]
|
|
29
|
+
end
|
|
30
|
+
|
|
31
|
+
def tags
|
|
32
|
+
[
|
|
33
|
+
Recipe::VEGAN,
|
|
34
|
+
Recipe::VEGETARIAN,
|
|
35
|
+
Recipe::GRAINFREE
|
|
36
|
+
]
|
|
37
|
+
end
|
|
38
|
+
|
|
39
|
+
def servings
|
|
40
|
+
{
|
|
41
|
+
Serving::PROTEIN => 0.5,
|
|
42
|
+
Serving::VEGETABLE => 1,
|
|
43
|
+
Serving::CONDIMENT => 1,
|
|
44
|
+
}
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
def directions
|
|
48
|
+
[
|
|
49
|
+
"Whisk egg whites and set aside.",
|
|
50
|
+
"Place olive oil in a small skillet and preheat over medium-low heat. Add garlic, basil, and tomato and sauté for 2 to 3 minutes.",
|
|
51
|
+
"Add egg whites and cook for about 1 minute, then gently lift edge of omelet and allow liquid to flow underneath. Cook an additional minute or two and flip. Cook 1 more minute.",
|
|
52
|
+
"Add cheese, fold in half, and slide onto plate."
|
|
53
|
+
]
|
|
54
|
+
end
|
|
55
|
+
|
|
56
|
+
def portion
|
|
57
|
+
1
|
|
58
|
+
end
|
|
59
|
+
|
|
60
|
+
def calories
|
|
61
|
+
138
|
|
62
|
+
end
|
|
63
|
+
|
|
64
|
+
def fat
|
|
65
|
+
7
|
|
66
|
+
end
|
|
67
|
+
|
|
68
|
+
def saturated_fat
|
|
69
|
+
2
|
|
70
|
+
end
|
|
71
|
+
|
|
72
|
+
def carbohydrate
|
|
73
|
+
5
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
def protein
|
|
77
|
+
13
|
|
78
|
+
end
|
|
79
|
+
|
|
80
|
+
def fiber
|
|
81
|
+
1
|
|
82
|
+
end
|
|
83
|
+
|
|
84
|
+
def sodium
|
|
85
|
+
241
|
|
86
|
+
end
|
|
87
|
+
|
|
88
|
+
def cholesterol
|
|
89
|
+
4
|
|
90
|
+
end
|
|
91
|
+
end
|
|
92
|
+
end
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
class Recipe
|
|
2
|
+
class WholeWheatCrepesFlorentine < Recipe
|
|
3
|
+
def initialize
|
|
4
|
+
@ingredients = [
|
|
5
|
+
Ingredient::Water.new(portion: "3/4", measurement: "cup"),
|
|
6
|
+
Ingredient::FlourWholeWheatPastry.new(portion: "1/2", measurement: "cup"),
|
|
7
|
+
Ingredient::MilkLowFat.new(portion: "1/4", measurement: "cup"),
|
|
8
|
+
Ingredient::EggWhite.new(portion: "1"),
|
|
9
|
+
Ingredient::OliveOil.new(portion: "1", measurement: "tsp"),
|
|
10
|
+
Ingredient::NonstickCookingSpray.new,
|
|
11
|
+
Ingredient::Onion.new(portion: "1/4", measurement: "cup", description: "diced"),
|
|
12
|
+
Ingredient::ChickenBreast.new(portion: "1/4", measurement: "cup", description: "chopped raw"),
|
|
13
|
+
Ingredient::Spinach.new(portion: "1/4", measurement: "cup", description: "frozen, thawed and drained"),
|
|
14
|
+
Ingredient::EggWhite.new(portion: "3", description: "beaten"),
|
|
15
|
+
Ingredient::OliveOil.new(portion: "1", measurement: "tsp"),
|
|
16
|
+
Ingredient::CheeseMozzarella.new(portion: "1", measurement: "tbsp", description: "shredded")
|
|
17
|
+
]
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
def meal_type
|
|
21
|
+
[ Recipe::BREAKFAST ]
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
def plans
|
|
25
|
+
[ Plan::FatShredder ]
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
def servings
|
|
29
|
+
{
|
|
30
|
+
Serving::PROTEIN => 1,
|
|
31
|
+
Serving::GRAIN => 1,
|
|
32
|
+
Serving::FAT => 1,
|
|
33
|
+
}
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
def directions
|
|
37
|
+
[
|
|
38
|
+
"CREPES",
|
|
39
|
+
"Whisk water, pastry flour, milk, 1 egg white, 1 tsp. olive oil, and a pinch of salt together until smooth. Cover and refrigerate 1 to 8 hours.",
|
|
40
|
+
"Spray a small frying pan with cooking spray and heat over medium heat.",
|
|
41
|
+
"Pour 1/4 cup of batter into pan and spread thin by tilting pan in a circular motion. Cook 2 to 3 minutes, until crepe begins to brown around the edges and top is covered in bubbles. Flip and cook an additional 1 to 2 minutes until crepe is no longer wet in the center but is still moist.",
|
|
42
|
+
"Yields 6 to 8 crepes. Leftover crepes can be stored in a plastic bag in the refrigerator for up to 1 week, and reheated in a frying pan.",
|
|
43
|
+
"FILLING",
|
|
44
|
+
"Place 1 tsp. olive oil in a medium frying pan and preheat over medium heat, then add onion and chicken and sauté until chicken is cooked thoroughly.",
|
|
45
|
+
"Add 3 beaten egg whites and spinach. Cook, scrambling, until eggs are no longer runny.",
|
|
46
|
+
"Add cooked egg mixture and cheese to crepe; roll up crepe and serve hot."
|
|
47
|
+
]
|
|
48
|
+
end
|
|
49
|
+
|
|
50
|
+
def portion
|
|
51
|
+
1
|
|
52
|
+
end
|
|
53
|
+
|
|
54
|
+
def calories
|
|
55
|
+
241
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
def fat
|
|
59
|
+
8
|
|
60
|
+
end
|
|
61
|
+
|
|
62
|
+
def saturated_fat
|
|
63
|
+
2
|
|
64
|
+
end
|
|
65
|
+
|
|
66
|
+
def carbohydrate
|
|
67
|
+
13
|
|
68
|
+
end
|
|
69
|
+
|
|
70
|
+
def protein
|
|
71
|
+
27
|
|
72
|
+
end
|
|
73
|
+
|
|
74
|
+
def fiber
|
|
75
|
+
3
|
|
76
|
+
end
|
|
77
|
+
|
|
78
|
+
def sodium
|
|
79
|
+
329
|
|
80
|
+
end
|
|
81
|
+
|
|
82
|
+
def cholesterol
|
|
83
|
+
34
|
|
84
|
+
end
|
|
85
|
+
end
|
|
86
|
+
end
|
data/lib/nutrition.rb
ADDED
metadata
ADDED
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: nutrition
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.0.0.pre
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Teo Dell'Amico
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2016-12-26 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description: TBD
|
|
14
|
+
email: teo@dellamico.com
|
|
15
|
+
executables: []
|
|
16
|
+
extensions: []
|
|
17
|
+
extra_rdoc_files: []
|
|
18
|
+
files:
|
|
19
|
+
- lib/nutrition.rb
|
|
20
|
+
- lib/nutrition/ingredient.rb
|
|
21
|
+
- lib/nutrition/ingredients/almond.rb
|
|
22
|
+
- lib/nutrition/ingredients/basil_leaf.rb
|
|
23
|
+
- lib/nutrition/ingredients/cheese.rb
|
|
24
|
+
- lib/nutrition/ingredients/cheese_cottage.rb
|
|
25
|
+
- lib/nutrition/ingredients/cheese_mozzarella.rb
|
|
26
|
+
- lib/nutrition/ingredients/chicken_breast.rb
|
|
27
|
+
- lib/nutrition/ingredients/cumin.rb
|
|
28
|
+
- lib/nutrition/ingredients/egg.rb
|
|
29
|
+
- lib/nutrition/ingredients/egg_white.rb
|
|
30
|
+
- lib/nutrition/ingredients/flaxseed.rb
|
|
31
|
+
- lib/nutrition/ingredients/flour_whole_wheat_pastry.rb
|
|
32
|
+
- lib/nutrition/ingredients/garlic.rb
|
|
33
|
+
- lib/nutrition/ingredients/garlic_powder.rb
|
|
34
|
+
- lib/nutrition/ingredients/jalepeno.rb
|
|
35
|
+
- lib/nutrition/ingredients/meat.rb
|
|
36
|
+
- lib/nutrition/ingredients/milk_low_fat.rb
|
|
37
|
+
- lib/nutrition/ingredients/nonstick_cooking_spray.rb
|
|
38
|
+
- lib/nutrition/ingredients/olive_oil.rb
|
|
39
|
+
- lib/nutrition/ingredients/onion.rb
|
|
40
|
+
- lib/nutrition/ingredients/parmesan.rb
|
|
41
|
+
- lib/nutrition/ingredients/peach.rb
|
|
42
|
+
- lib/nutrition/ingredients/pepper.rb
|
|
43
|
+
- lib/nutrition/ingredients/rice.rb
|
|
44
|
+
- lib/nutrition/ingredients/salt.rb
|
|
45
|
+
- lib/nutrition/ingredients/spinach.rb
|
|
46
|
+
- lib/nutrition/ingredients/tomato_roma.rb
|
|
47
|
+
- lib/nutrition/ingredients/water.rb
|
|
48
|
+
- lib/nutrition/ingredients/yogurt.rb
|
|
49
|
+
- lib/nutrition/plan.rb
|
|
50
|
+
- lib/nutrition/recipe.rb
|
|
51
|
+
- lib/nutrition/recipes/breakfast_muffin_cups_to_go.rb
|
|
52
|
+
- lib/nutrition/recipes/peaches_n_cream_parfait.rb
|
|
53
|
+
- lib/nutrition/recipes/tomato_pesto_egg_white_omelet.rb
|
|
54
|
+
- lib/nutrition/recipes/whole_wheat_crepes_florentine.rb
|
|
55
|
+
- lib/nutrition/serving.rb
|
|
56
|
+
homepage: http://rubygems.org/gems/nutrition
|
|
57
|
+
licenses:
|
|
58
|
+
- MIT
|
|
59
|
+
metadata: {}
|
|
60
|
+
post_install_message:
|
|
61
|
+
rdoc_options: []
|
|
62
|
+
require_paths:
|
|
63
|
+
- lib
|
|
64
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
66
|
+
- - '>='
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: '0'
|
|
69
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
70
|
+
requirements:
|
|
71
|
+
- - '>'
|
|
72
|
+
- !ruby/object:Gem::Version
|
|
73
|
+
version: 1.3.1
|
|
74
|
+
requirements: []
|
|
75
|
+
rubyforge_project:
|
|
76
|
+
rubygems_version: 2.4.8
|
|
77
|
+
signing_key:
|
|
78
|
+
specification_version: 4
|
|
79
|
+
summary: Nutrition gem for P90x
|
|
80
|
+
test_files: []
|