nutrition_facts 0.6.0 → 0.7.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/README.md +9 -1
- data/lib/nutrition_facts/cli.rb +14 -2
- 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: cbceada6a16fe84638023349f57a8e816d30f212
|
4
|
+
data.tar.gz: 9c61c01d154062d2d2c700af60120b491f4ff7a7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 710a1b67f1f69009b1fbde7a9e46f0fbaa37d4dc9956c5bb59b930afcf4818b391bd42a9684e68d22bd15408c3abc6e118131c97ca4a57b8436d77c8fa1e7cca
|
7
|
+
data.tar.gz: dd71541cd0ad52e1152954d7f69721d8496c41034b52c37bd8c1a6a6a40190cd575313c64c5c8a6db00ecbd1050762796445aa25a74eb16e5e8e825ba9f630d8
|
data/README.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# NutritionFacts
|
2
|
-
This gem can be used to find nutritional facts for a variety of
|
2
|
+
This gem can be used to find nutritional facts for a large variety of food items including brand names, specific restaurant items, and grocery foods.
|
3
|
+
|
4
|
+
Example searches:
|
5
|
+
- mcdonalds french fries
|
6
|
+
- chipotle burrito
|
7
|
+
- almonds
|
8
|
+
- blueberry pie
|
9
|
+
- corned beef on rye
|
10
|
+
- pecan crusted rainbow trout
|
3
11
|
|
4
12
|
The data is pulled from the [Nutritionix API](https://developer.nutritionix.com/).
|
5
13
|
|
data/lib/nutrition_facts/cli.rb
CHANGED
@@ -15,7 +15,14 @@ class NutritionFacts::CLI
|
|
15
15
|
puts 'Please type the name of a food to search:'
|
16
16
|
puts ''
|
17
17
|
food_name = gets.chomp.gsub(' ', '%20')
|
18
|
-
|
18
|
+
if food_name == 'exit'
|
19
|
+
puts ''
|
20
|
+
puts 'Thanks for using NutritionFacts CLI!'
|
21
|
+
puts ''
|
22
|
+
Kernel.abort
|
23
|
+
else
|
24
|
+
get_food_data(food_name)
|
25
|
+
end
|
19
26
|
end
|
20
27
|
|
21
28
|
def get_food_data(food_name)
|
@@ -40,7 +47,12 @@ class NutritionFacts::CLI
|
|
40
47
|
|
41
48
|
user_input = gets.chomp.downcase
|
42
49
|
|
43
|
-
if user_input
|
50
|
+
if user_input == 'exit'
|
51
|
+
puts ''
|
52
|
+
puts 'Thanks for using NutritionFacts CLI!'
|
53
|
+
puts ''
|
54
|
+
Kernel.abort
|
55
|
+
elsif user_input.to_i.between?(0, @food_items.count)
|
44
56
|
display_item(@food_items[user_input.to_i - 1])
|
45
57
|
loop_or_quit
|
46
58
|
else !user_input.to_i.between?(0, @food_items.count)
|
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.7.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-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|