beer_recipe 0.4.7 → 0.4.8
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1cefcead7d8f4e76d6a069508409014f4997cf20
|
4
|
+
data.tar.gz: 2c349c9cf66a2324d196800b1c92d97083ec8135
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f0bef2eb48ca75899c49e65bdc6f87129f2ed6913939e67d99278200bc9d8440736c3f89f3914430c7e33cd75bda508f9c070d1b0f25a13bb9ad01609f0a45b2
|
7
|
+
data.tar.gz: 91af2b3727f40e189558f6a6acf5ba0a9f0c88c99091fea1768905eaf0ab7794d1acffc09803042cae2ed0597fc1cec3d60011dacb8d102bb120e20f0112d009
|
@@ -23,6 +23,22 @@ class BeerRecipe::FermentableWrapper < BeerRecipe::Wrapper
|
|
23
23
|
@mcu ||= BeerRecipe::Formula.new.mcu(amount, color_srm, @recipe.batch_size)
|
24
24
|
end
|
25
25
|
|
26
|
+
def ibu
|
27
|
+
if bitter_extract?
|
28
|
+
amount_in_pounds * ibu_gal_per_lb / @recipe.gallons
|
29
|
+
else
|
30
|
+
0
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
def bitter_extract?
|
35
|
+
!ibu_gal_per_lb.nil?
|
36
|
+
end
|
37
|
+
|
38
|
+
def amount_in_pounds
|
39
|
+
amount * 2.20462
|
40
|
+
end
|
41
|
+
|
26
42
|
def color_class
|
27
43
|
c = color_srm.to_i
|
28
44
|
if c > 40
|
data/lib/beer_recipe/formula.rb
CHANGED
@@ -14,15 +14,47 @@ class BeerRecipe::HopWrapper < BeerRecipe::Wrapper
|
|
14
14
|
end
|
15
15
|
|
16
16
|
def ibu
|
17
|
-
@ibu ||=
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
17
|
+
@ibu ||= calculate_ibu
|
18
|
+
end
|
19
|
+
|
20
|
+
def calculate_ibu
|
21
|
+
# TODO: Use recipe boil time for first wort/mash
|
22
|
+
# TODO: Use calculated_og if og missing.
|
23
|
+
if has_needed_ibu_values? && contributes_bitterness?
|
24
|
+
ibu = BeerRecipe::Formula.new.tinseth(@recipe.batch_size, @record.time, @recipe.og, @record.alpha, amount)
|
25
|
+
ibu = adjust_bitterness(ibu)
|
26
|
+
ibu
|
27
|
+
else
|
28
|
+
0
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
def adjust_bitterness(ibu)
|
33
|
+
if @record.form == 'Pellet'
|
34
|
+
ibu *= 1.10
|
35
|
+
elsif @record.form == 'Plug'
|
36
|
+
ibu *= 1.02
|
37
|
+
end
|
38
|
+
if @record.use == 'Mash'
|
39
|
+
ibu *= 0.20
|
40
|
+
elsif @record.use == 'First Wort'
|
41
|
+
ibu *= 1.10
|
42
|
+
elsif @record.use == 'Aroma'
|
43
|
+
ibu *= 0.10
|
44
|
+
end
|
45
|
+
ibu
|
46
|
+
end
|
47
|
+
|
48
|
+
def contributes_bitterness?
|
49
|
+
!dryhop?
|
50
|
+
end
|
51
|
+
|
52
|
+
def has_needed_ibu_values?
|
53
|
+
@recipe.has_final_values? && @recipe.batch_size > 0 && amount > 0 && @record.time > 0
|
22
54
|
end
|
23
55
|
|
24
56
|
def dryhop?
|
25
|
-
@record.use == 'Dry Hop'
|
57
|
+
@record.use == 'Dry Hop' || @record.time > 320
|
26
58
|
end
|
27
59
|
|
28
60
|
def boil_time
|
@@ -50,6 +50,10 @@ class BeerRecipe::RecipeWrapper < BeerRecipe::Wrapper
|
|
50
50
|
recipe.batch_size || 0
|
51
51
|
end
|
52
52
|
|
53
|
+
def gallons
|
54
|
+
batch_size * 0.264172
|
55
|
+
end
|
56
|
+
|
53
57
|
def og
|
54
58
|
recipe.og || 0
|
55
59
|
end
|
@@ -68,6 +72,9 @@ class BeerRecipe::RecipeWrapper < BeerRecipe::Wrapper
|
|
68
72
|
hops.select { |h| h.use == 'Boil' }.each do |hop|
|
69
73
|
@ibu += hop.ibu
|
70
74
|
end
|
75
|
+
bitter_extracts.each do |f|
|
76
|
+
@ibu += f.ibu
|
77
|
+
end
|
71
78
|
@ibu
|
72
79
|
end
|
73
80
|
|
@@ -75,6 +82,10 @@ class BeerRecipe::RecipeWrapper < BeerRecipe::Wrapper
|
|
75
82
|
fermentables.select { |f| f.type == 'Grain' }
|
76
83
|
end
|
77
84
|
|
85
|
+
def bitter_extracts
|
86
|
+
fermentables.select { |f| f.bitter_extract? }
|
87
|
+
end
|
88
|
+
|
78
89
|
def color
|
79
90
|
color_srm
|
80
91
|
end
|
data/lib/beer_recipe/version.rb
CHANGED