nutrition_facts 0.5.0 → 0.6.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 +38 -44
- data/lib/nutrition_facts/item.rb +1 -1
- data/lib/nutrition_facts/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6f9eb3408745741e6137144d92d8016173044634
|
4
|
+
data.tar.gz: 0457e59021cb2594b2e24e4696a17b4bef23e5f4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e13b2d1408a869c277802bf9c936685c4d5fd7faeb6ad31d16dc1b9066823820edb249a0b4795c63bd399bbf62c2129bffe47ba6adb4e1542c36ce308f68224a
|
7
|
+
data.tar.gz: efcbbe97c83274a57d7205b24dcb23d416a7ecbed60e5ff45241ca5de8e82cb056cc2b054b93e63d2fd8d693b96b8cf681a025b8328452dac160fba8ae3814fc
|
data/lib/nutrition_facts/cli.rb
CHANGED
@@ -13,66 +13,43 @@ class NutritionFacts::CLI
|
|
13
13
|
|
14
14
|
def food_search
|
15
15
|
puts 'Please type the name of a food to search:'
|
16
|
+
puts ''
|
16
17
|
food_name = gets.chomp.gsub(' ', '%20')
|
17
18
|
get_food_data(food_name)
|
18
|
-
|
19
|
-
if food_name == 'exit'
|
20
|
-
puts 'Thanks for using NutritionFacts CLI!'
|
21
|
-
puts ''
|
22
|
-
elsif !@food_data.nil?
|
23
|
-
which_item
|
24
|
-
else
|
25
|
-
puts 'That item was not found, please try another search term.'
|
26
|
-
puts ''
|
27
|
-
NutritionFacts::Item.reset
|
28
|
-
food_search
|
29
|
-
end
|
30
19
|
end
|
31
20
|
|
32
21
|
def get_food_data(food_name)
|
33
|
-
@
|
22
|
+
@food_items = NutritionFacts::Item.find_by_name(food_name)
|
23
|
+
which_item
|
34
24
|
end
|
35
25
|
|
36
26
|
def which_item
|
37
|
-
|
38
|
-
|
39
|
-
puts "#{index + 1}. #{@food_data[index].item_name}"
|
40
|
-
end
|
41
|
-
|
42
|
-
user_input = nil
|
43
|
-
|
44
|
-
loop do
|
27
|
+
if @food_items.empty?
|
28
|
+
puts 'That item was not found, please try another search term.'
|
45
29
|
puts ''
|
46
|
-
|
47
|
-
|
48
|
-
|
30
|
+
NutritionFacts::Item.reset
|
31
|
+
food_search
|
32
|
+
else
|
33
|
+
puts ''
|
34
|
+
@food_items.each.with_index do |_data, index|
|
35
|
+
puts "#{index + 1}. #{@food_items[index].item_name}"
|
36
|
+
end
|
49
37
|
puts ''
|
50
|
-
puts '
|
38
|
+
puts 'Please enter the number of the food to see more info about that item:'
|
51
39
|
end
|
52
40
|
|
53
|
-
|
54
|
-
|
55
|
-
|
41
|
+
user_input = gets.chomp.downcase
|
42
|
+
|
43
|
+
if user_input.to_i.between?(0, @food_items.count)
|
44
|
+
display_item(@food_items[user_input.to_i - 1])
|
56
45
|
loop_or_quit
|
46
|
+
else !user_input.to_i.between?(0, @food_items.count)
|
47
|
+
puts ''
|
48
|
+
puts 'Not sure what you meant, please type the number of the food item.'
|
49
|
+
which_item
|
57
50
|
end
|
58
51
|
end
|
59
52
|
|
60
|
-
def display_item(food_item_data)
|
61
|
-
puts ''
|
62
|
-
puts food_item_data.item_name.to_s
|
63
|
-
puts '---'
|
64
|
-
puts "Calories: #{food_item_data.nf_calories} kcal"
|
65
|
-
puts "Total Fat: #{food_item_data.nf_total_fat}g"
|
66
|
-
puts "Protein: #{food_item_data.nf_protein}g"
|
67
|
-
puts "Dietary Fiber: #{food_item_data.nf_dietary_fiber}g"
|
68
|
-
puts "Sugar: #{food_item_data.nf_sugars}g"
|
69
|
-
puts "Sodium: #{food_item_data.nf_sodium}mg"
|
70
|
-
puts "Vitamin C: #{food_item_data.nf_vitamin_c_dv}%"
|
71
|
-
puts "Vitamin A: #{food_item_data.nf_vitamin_a_dv}%"
|
72
|
-
puts "Serving Size: #{food_item_data.nf_serving_weight_grams}g"
|
73
|
-
loop_or_quit
|
74
|
-
end
|
75
|
-
|
76
53
|
def loop_or_quit
|
77
54
|
puts ''
|
78
55
|
puts 'Please type "other", "search", or "exit".'
|
@@ -89,10 +66,27 @@ class NutritionFacts::CLI
|
|
89
66
|
puts ''
|
90
67
|
puts 'Thanks for using NutritionFacts CLI!'
|
91
68
|
puts ''
|
69
|
+
Kernel.abort
|
92
70
|
else
|
93
71
|
puts ''
|
94
72
|
puts 'Invalid input. Please try again.'
|
95
73
|
loop_or_quit
|
96
74
|
end
|
97
75
|
end
|
76
|
+
|
77
|
+
def display_item(food_item_data)
|
78
|
+
puts ''
|
79
|
+
puts food_item_data.item_name.to_s
|
80
|
+
puts '---'
|
81
|
+
puts "Calories: #{food_item_data.nf_calories} kcal"
|
82
|
+
puts "Total Fat: #{food_item_data.nf_total_fat}g"
|
83
|
+
puts "Protein: #{food_item_data.nf_protein}g"
|
84
|
+
puts "Dietary Fiber: #{food_item_data.nf_dietary_fiber}g"
|
85
|
+
puts "Sugar: #{food_item_data.nf_sugars}g"
|
86
|
+
puts "Sodium: #{food_item_data.nf_sodium}mg"
|
87
|
+
puts "Vitamin C: #{food_item_data.nf_vitamin_c_dv}%"
|
88
|
+
puts "Vitamin A: #{food_item_data.nf_vitamin_a_dv}%"
|
89
|
+
puts "Serving Size: #{food_item_data.nf_serving_weight_grams}g"
|
90
|
+
loop_or_quit
|
91
|
+
end
|
98
92
|
end
|
data/lib/nutrition_facts/item.rb
CHANGED
@@ -15,7 +15,7 @@ class NutritionFacts::Item
|
|
15
15
|
end
|
16
16
|
|
17
17
|
def self.find_by_name(name)
|
18
|
-
uri = URI.parse("https://api.nutritionix.com/v1_1/search/#{name}?results=0%
|
18
|
+
uri = URI.parse("https://api.nutritionix.com/v1_1/search/#{name}?results=0%3A9&cal_min=0&cal_max=50000&fields=item_name%2Cnf_calories%2Cnf_total_fat%2Cnf_total_carbohydrate%2Cnf_dietary_fiber%2Cnf_sugars%2Cnf_protein%2Cnf_serving_weight_grams%2Cnf_sodium%2Cnf_vitamin_a_dv%2Cnf_vitamin_c_dv&appId=da276553&appKey=f501b79647768ba684af20428a44ef59")
|
19
19
|
|
20
20
|
response = Net::HTTP.get_response(uri)
|
21
21
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nutrition_facts
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matthew Preiser
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-04-
|
11
|
+
date: 2016-04-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|