nutrition_facts 0.8.0 → 0.9.0
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 +4 -4
- data/lib/nutrition_facts/cli.rb +16 -16
- data/lib/nutrition_facts/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e2748a305d7ff1f00d7a4dcaf2bb3aa7437afd7f
|
4
|
+
data.tar.gz: 909b426f8ac1e05d8f026bd3aa0738af485284d7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 02522350e08530266bd2215b23f576e54457795eb79a2ca7dfc2e98ed0423640964e8e3160072a93bf5ea4bb8a32402b380b5c9f040092f6a4be9fb1486ac34e
|
7
|
+
data.tar.gz: 83d59194a1f28c1687f9fad885f33e94b88549119e259ae3adcdd75eb51268d39fb76fc1535a22fedcc41446a4f50f976ec12faae17b82ab155718380f252c8f
|
data/lib/nutrition_facts/cli.rb
CHANGED
@@ -90,22 +90,22 @@ class NutritionFacts::CLI
|
|
90
90
|
puts ''
|
91
91
|
puts food_item_data.item_name.to_s
|
92
92
|
puts '---'
|
93
|
-
puts "Serving Size: #{food_item_data.nf_serving_size_qty} #{food_item_data.nf_serving_size_unit}"
|
94
|
-
puts "Serving Weight: #{food_item_data.nf_serving_weight_grams}g"
|
95
|
-
puts "Calories: #{food_item_data.nf_calories} kcal"
|
96
|
-
puts "Calories from fat: #{food_item_data.nf_calories_from_fat} kcal"
|
97
|
-
puts "Total Fat: #{food_item_data.nf_total_fat}g"
|
98
|
-
puts "Saturated Fat: #{food_item_data.nf_saturated_fat}g"
|
99
|
-
puts "Cholesterol: #{food_item_data.nf_cholesterol}mg"
|
100
|
-
puts "Protein: #{food_item_data.nf_protein}g"
|
101
|
-
puts "Total Carbohydrates: #{food_item_data.nf_total_carbohydrate}g"
|
102
|
-
puts "Sugar: #{food_item_data.nf_sugars}g"
|
103
|
-
puts "Dietary Fiber: #{food_item_data.nf_dietary_fiber}g"
|
104
|
-
puts "Sodium: #{food_item_data.nf_sodium}mg"
|
105
|
-
puts "Vitamin C: #{food_item_data.nf_vitamin_c_dv}%"
|
106
|
-
puts "Vitamin A: #{food_item_data.nf_vitamin_a_dv}%"
|
107
|
-
puts "Calcium: #{food_item_data.nf_calcium_dv}%"
|
108
|
-
puts "Iron: #{food_item_data.nf_iron_dv}%"
|
93
|
+
puts "Serving Size: #{food_item_data.nf_serving_size_qty} #{food_item_data.nf_serving_size_unit}" unless food_item_data.nf_serving_size_unit.nil?
|
94
|
+
puts "Serving Weight: #{food_item_data.nf_serving_weight_grams}g" unless food_item_data.nf_serving_weight_grams.nil?
|
95
|
+
puts "Calories: #{food_item_data.nf_calories} kcal" unless food_item_data.nf_calories.nil?
|
96
|
+
puts "Calories from fat: #{food_item_data.nf_calories_from_fat} kcal" unless food_item_data.nf_calories_from_fat.nil?
|
97
|
+
puts "Total Fat: #{food_item_data.nf_total_fat}g" unless food_item_data.nf_total_fat.nil?
|
98
|
+
puts "Saturated Fat: #{food_item_data.nf_saturated_fat}g" unless food_item_data.nf_saturated_fat.nil?
|
99
|
+
puts "Cholesterol: #{food_item_data.nf_cholesterol}mg" unless food_item_data.nf_cholesterol.nil?
|
100
|
+
puts "Protein: #{food_item_data.nf_protein}g" unless food_item_data.nf_protein.nil?
|
101
|
+
puts "Total Carbohydrates: #{food_item_data.nf_total_carbohydrate}g" unless food_item_data.nf_total_carbohydrate.nil?
|
102
|
+
puts "Sugar: #{food_item_data.nf_sugars}g" unless food_item_data.nf_sugars.nil?
|
103
|
+
puts "Dietary Fiber: #{food_item_data.nf_dietary_fiber}g" unless food_item_data.nf_dietary_fiber.nil?
|
104
|
+
puts "Sodium: #{food_item_data.nf_sodium}mg" unless food_item_data.nf_sodium.nil?
|
105
|
+
puts "Vitamin C: #{food_item_data.nf_vitamin_c_dv}%" unless food_item_data.nf_vitamin_c_dv.nil?
|
106
|
+
puts "Vitamin A: #{food_item_data.nf_vitamin_a_dv}%" unless food_item_data.nf_vitamin_a_dv.nil?
|
107
|
+
puts "Calcium: #{food_item_data.nf_calcium_dv}%" unless food_item_data.nf_calcium_dv.nil?
|
108
|
+
puts "Iron: #{food_item_data.nf_iron_dv}%" unless food_item_data.nf_iron_dv.nil?
|
109
109
|
loop_or_quit
|
110
110
|
end
|
111
111
|
end
|