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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6f9eb3408745741e6137144d92d8016173044634
4
- data.tar.gz: 0457e59021cb2594b2e24e4696a17b4bef23e5f4
3
+ metadata.gz: cbceada6a16fe84638023349f57a8e816d30f212
4
+ data.tar.gz: 9c61c01d154062d2d2c700af60120b491f4ff7a7
5
5
  SHA512:
6
- metadata.gz: e13b2d1408a869c277802bf9c936685c4d5fd7faeb6ad31d16dc1b9066823820edb249a0b4795c63bd399bbf62c2129bffe47ba6adb4e1542c36ce308f68224a
7
- data.tar.gz: efcbbe97c83274a57d7205b24dcb23d416a7ecbed60e5ff45241ca5de8e82cb056cc2b054b93e63d2fd8d693b96b8cf681a025b8328452dac160fba8ae3814fc
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 common foods.
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
 
@@ -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
- get_food_data(food_name)
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.to_i.between?(0, @food_items.count)
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)
@@ -1,3 +1,3 @@
1
1
  module NutritionFacts
2
- VERSION = '0.6.0'.freeze
2
+ VERSION = '0.7.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.6.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-12 00:00:00.000000000 Z
11
+ date: 2016-04-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler