nutrition_facts 0.2.0 → 0.3.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: 97ff9baa3bd8d3166cc6aab4b5633a091c57d093
4
- data.tar.gz: 666705ef2ecac383b2f7932f52b72fbe849664d9
3
+ metadata.gz: c77b8e40787dd42aac3d8bbb9a57382341a5bc3b
4
+ data.tar.gz: a3a097b1491ce6b52eed9acbf006c542f5ab1c33
5
5
  SHA512:
6
- metadata.gz: 59b7f9768868db3c569057d544665656a292b720de98b2d2fc20334caf1eb0d33d2df36005acf382bce9c706086a6377edecb85b70edf6769a12339a067aea7a
7
- data.tar.gz: 002199788cee49034c4bfe04025b639a1275be3e591f96cce00bfa36e485bd9314ffb9237f183d57be3c7d216c8de4910b70131414b32031e2e594e0491166ae
6
+ metadata.gz: 21f369b64551b2dac7c7350b3f42684cb0c8fe8f6ddc0fc41b29a033b3589bf991042ecb80fbf63511b2e0e8c1f996ac2336bccd8e4aea1ab534db422cf5a3fd
7
+ data.tar.gz: a607c3ee96d467d4aaaf7e0798a9c2f323f0ddefa79c679eeaeac2da5e4034149f23ffcee9ce18d4b985845c7eb75ba79e215a99fab583976fd120b0d7261105
data/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2016 Matthew Preiser
3
+ Copyright (c) 2016 Matthew Preiser
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -3,6 +3,9 @@ This gem can be used to find nutritional facts for a variety of common foods.
3
3
 
4
4
  The data is pulled from the [Nutritionix API](https://developer.nutritionix.com/).
5
5
 
6
+ An accompanying blog post about building this gem:
7
+ [https://preiser.io/Nutrition-Facts-CLI.html](https://preiser.io/Nutrition-Facts-CLI.html)
8
+
6
9
  ## Installation
7
10
  Add this line to your application's Gemfile:
8
11
 
@@ -1,31 +1,42 @@
1
1
  class NutritionFacts::CLI
2
2
 
3
3
  def call
4
- @food_data = nil
5
- start
4
+ food_search
6
5
  end
7
6
 
8
- def welcome
7
+ def food_search
9
8
  system 'clear'
10
9
  puts ""
11
- puts "--------- Welcome to NutritionFacts CLI ---------"
10
+ puts "--- Welcome to NutritionFacts CLI ---------"
12
11
  puts ""
13
- end
14
-
15
- def start
16
- food_search
17
- end
18
-
19
- def food_search
20
- welcome
21
12
  puts "Please type the name of a food to search:"
22
13
 
23
14
  food_name = gets.chomp.gsub(" ","%20")
24
- get_food_data(food_name)
25
- which_item
26
-
15
+ if food_name == "exit"
16
+ puts ""
17
+ puts 'Thanks for using NutritionFacts CLI!'
18
+ puts ""
19
+ else
20
+ get_food_data(food_name)
21
+ which_item
22
+ end
27
23
  end
28
24
 
25
+ # def food_search
26
+ # welcome
27
+ # puts "Please type the name of a food to search:"
28
+ # user_input = gets.chomp
29
+ # if user_input != "exit"
30
+ # food_name = gets.chomp.gsub(" ","%20")
31
+ # get_food_data(food_name)
32
+ # which_item
33
+ # else
34
+ # puts ""
35
+ # puts 'Thanks for using NutritionFacts CLI!'
36
+ # puts ""
37
+ # end
38
+ # end
39
+
29
40
  def get_food_data(food_name)
30
41
  @food_data = NutritionFacts::Item.find_by_name(food_name)
31
42
  # binding.pry
@@ -118,7 +129,7 @@ class NutritionFacts::CLI
118
129
  which_item
119
130
  when 'search'
120
131
  NutritionFacts::Item.reset
121
- start
132
+ call
122
133
  when 'exit'
123
134
  puts ""
124
135
  puts 'Thanks for using NutritionFacts CLI!'
@@ -1,19 +1,9 @@
1
1
  class NutritionFacts::Item
2
- attr_accessor :total_hits,
3
- :hits,
4
- :max_score,
5
- :item_name,
6
- :nf_calories,
7
- :nf_total_fat,
8
- :nf_total_carbohydrate,
9
- :nf_dietary_fiber,
10
- :nf_sugars,
11
- :nf_protein,
12
- :nf_serving_size_qty,
13
- :nf_serving_size_unit,
14
- :nf_serving_weight_grams,
15
- :nf_sodium,
16
- :nf_vitamin_c_dv,
2
+ attr_accessor :total_hits, :hits, :max_score,
3
+ :item_name, :nf_calories, :nf_total_fat,
4
+ :nf_total_carbohydrate, :nf_dietary_fiber, :nf_sugars,
5
+ :nf_protein, :nf_serving_size_qty, :nf_serving_size_unit,
6
+ :nf_serving_weight_grams, :nf_sodium, :nf_vitamin_c_dv,
17
7
  :nf_vitamin_a_dv
18
8
 
19
9
  @@all = []
@@ -1,3 +1,3 @@
1
1
  module NutritionFacts
2
- VERSION = "0.2.0"
2
+ VERSION = "0.3.0"
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.2.0
4
+ version: 0.3.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-03-24 00:00:00.000000000 Z
11
+ date: 2016-04-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -105,7 +105,6 @@ files:
105
105
  - ".gitignore"
106
106
  - Gemfile
107
107
  - LICENSE
108
- - LICENSE.txt
109
108
  - README.md
110
109
  - Rakefile
111
110
  - bin/console
data/LICENSE.txt DELETED
@@ -1,21 +0,0 @@
1
- The MIT License (MIT)
2
-
3
- Copyright (c) 2016 preiser
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in
13
- all copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
- THE SOFTWARE.