beer_recipe 0.4.9 → 0.4.10

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: 5cc265b45be05ab969b2e57f501f309dc597e105
4
- data.tar.gz: c929aa5d05533158f70eeafa509e189a469a1240
3
+ metadata.gz: 60a0a88ed3e8fce493f27c7f43c95a1f4e9a8462
4
+ data.tar.gz: da76f22a5e3d4482a24dc7708ec187ae95a654bf
5
5
  SHA512:
6
- metadata.gz: 3f52750a8bd1f7055bed2455913450b24f3fb39ddd07468062bea036f7d808c50fc29ea56cd15560d9e2cba752880a4b98b952fcd2c945cc750e129fcac8a342
7
- data.tar.gz: 6192e607c419c4dd4c5fafcaeb93f31b6370e1d3a8331484a38c4bd1e2dfeedebf05c9c478eb19a92a070eda884ca49606944e5802b84cbf26f19ec78a303d5f
6
+ metadata.gz: b0dbd4774b0f88e5097e6f70d11276d2be3fb09c84c836cae5661802f89c76ed990410773dc0988a78f82dbd4b1a6bc24b5b5a3f9494e1f89bc1b46ef5558f77
7
+ data.tar.gz: f0179d25b56ab38859ebad1320a52aaa3b3e37093f7eea6a8cf08568e8abeefcabb64e7fbe5bc8019ca781da0a95229de51395a3dfcad4dad30e9bfc806cafb0
@@ -1,4 +1,4 @@
1
- class BeerRecipe::Reader
1
+ class BeerRecipe::RecipeReader
2
2
  attr_accessor :parser, :recipe
3
3
 
4
4
  def initialize(options = {})
@@ -54,12 +54,20 @@ class BeerRecipe::RecipeWrapper < BeerRecipe::Wrapper
54
54
  batch_size * 0.264172
55
55
  end
56
56
 
57
+ def estimated_og
58
+ strip_unit(recipe.est_og)
59
+ end
60
+
61
+ def estimated_fg
62
+ strip_unit(recipe.est_fg)
63
+ end
64
+
57
65
  def og
58
- recipe.og || 0
66
+ @og ||= estimated_og || recipe.og || 0
59
67
  end
60
68
 
61
69
  def fg
62
- recipe.fg || 0
70
+ @fg ||= estimated_fg || recipe.fg || 0
63
71
  end
64
72
 
65
73
  def abv
@@ -67,15 +75,23 @@ class BeerRecipe::RecipeWrapper < BeerRecipe::Wrapper
67
75
  end
68
76
 
69
77
  def ibu
70
- return @ibu if @ibu
71
- @ibu = 0
72
- hops.select { |h| h.use == 'Boil' }.each do |hop|
73
- @ibu += hop.ibu
78
+ @ibu ||= strip_unit(recipe.ibu) || calculate_ibu
79
+ end
80
+
81
+ def strip_unit(value)
82
+ return nil if value.nil?
83
+ value.gsub(/ \w+\Z/, '').to_f
84
+ end
85
+
86
+ def calculate_ibu
87
+ ibu = 0
88
+ hops.each do |hop|
89
+ ibu += hop.ibu
74
90
  end
75
91
  bitter_extracts.each do |f|
76
- @ibu += f.ibu
92
+ ibu += f.ibu
77
93
  end
78
- @ibu
94
+ ibu
79
95
  end
80
96
 
81
97
  def grains
@@ -1,3 +1,3 @@
1
1
  module BeerRecipe
2
- VERSION = '0.4.9'
2
+ VERSION = '0.4.10'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: beer_recipe
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.9
4
+ version: 0.4.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Olle Johansson