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 +4 -4
- data/lib/beer_recipe/recipe_reader.rb +1 -1
- data/lib/beer_recipe/recipe_wrapper.rb +24 -8
- data/lib/beer_recipe/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 60a0a88ed3e8fce493f27c7f43c95a1f4e9a8462
|
4
|
+
data.tar.gz: da76f22a5e3d4482a24dc7708ec187ae95a654bf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b0dbd4774b0f88e5097e6f70d11276d2be3fb09c84c836cae5661802f89c76ed990410773dc0988a78f82dbd4b1a6bc24b5b5a3f9494e1f89bc1b46ef5558f77
|
7
|
+
data.tar.gz: f0179d25b56ab38859ebad1320a52aaa3b3e37093f7eea6a8cf08568e8abeefcabb64e7fbe5bc8019ca781da0a95229de51395a3dfcad4dad30e9bfc806cafb0
|
@@ -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
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
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
|
-
|
92
|
+
ibu += f.ibu
|
77
93
|
end
|
78
|
-
|
94
|
+
ibu
|
79
95
|
end
|
80
96
|
|
81
97
|
def grains
|
data/lib/beer_recipe/version.rb
CHANGED