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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4aa2734c02d825a5400343a7de98515abfdd1c8d
4
- data.tar.gz: 8abe034ba8902df7dec38e4d07e23fe3d834d9e2
3
+ metadata.gz: 6f9eb3408745741e6137144d92d8016173044634
4
+ data.tar.gz: 0457e59021cb2594b2e24e4696a17b4bef23e5f4
5
5
  SHA512:
6
- metadata.gz: 20f94b08bc9ad317d8fb06e518e9452e625bf9722d4a770c7aede9e46bef4c4300e6ef3773c2f10ecf8c671aa865238d50c72a86af60c6e998265c8afcaa1eb7
7
- data.tar.gz: a50881a67b0c3ee3798482eac538f8ab665c2cf0cfc7cda1446e4d489901c748af799485eec005ffed7b6d91e795e03a99f3440ead4772bc974140315aaea498
6
+ metadata.gz: e13b2d1408a869c277802bf9c936685c4d5fd7faeb6ad31d16dc1b9066823820edb249a0b4795c63bd399bbf62c2129bffe47ba6adb4e1542c36ce308f68224a
7
+ data.tar.gz: efcbbe97c83274a57d7205b24dcb23d416a7ecbed60e5ff45241ca5de8e82cb056cc2b054b93e63d2fd8d693b96b8cf681a025b8328452dac160fba8ae3814fc
@@ -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
- @food_data = NutritionFacts::Item.find_by_name(food_name)
22
+ @food_items = NutritionFacts::Item.find_by_name(food_name)
23
+ which_item
34
24
  end
35
25
 
36
26
  def which_item
37
- puts ''
38
- @food_data.each.with_index do |_data, index|
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
- puts 'Please enter the number of the food to see more info about that item:'
47
- user_input = gets.chomp
48
- break if user_input.to_i.between?(0, 10)
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 'Not sure what you meant, please type the number of the food item.'
38
+ puts 'Please enter the number of the food to see more info about that item:'
51
39
  end
52
40
 
53
- if user_input.to_i.between?(0, 10)
54
- display_item(@food_data[user_input.to_i - 1])
55
- else
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
@@ -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%3A10&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")
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
 
@@ -1,3 +1,3 @@
1
1
  module NutritionFacts
2
- VERSION = '0.5.0'.freeze
2
+ VERSION = '0.6.0'.freeze
3
3
  end
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.5.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 00:00:00.000000000 Z
11
+ date: 2016-04-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler