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: 40c81b35807a30b9416ebafbcdd7ac37406c1f59
4
- data.tar.gz: 95ebf28d71688df5b73211de49f46364c7bb51b0
3
+ metadata.gz: 1cefcead7d8f4e76d6a069508409014f4997cf20
4
+ data.tar.gz: 2c349c9cf66a2324d196800b1c92d97083ec8135
5
5
  SHA512:
6
- metadata.gz: ac17a5778a5de1c1fb95d32c13b11355a98edcd632f1624eadb4bfa100aa45c11a757c86a23350e9e1c7d1a3f303352e2d4cd16d451c0fb85484cae64779ee88
7
- data.tar.gz: a45c0c6ac75ce3d7e6dd02482147515184eb9847ac701566e2f3f2486c7e97a59f4169d28641c549008b6e66fd557ae6dc99f753b3d0aa65b6350c81f7ab834d
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
@@ -65,7 +65,7 @@ module BeerRecipe
65
65
  end
66
66
 
67
67
  def mgl_added_alpha_acids(batch_size, alpha, amount)
68
- (alpha * amount * 1000) / batch_size
68
+ (alpha * amount) / batch_size
69
69
  end
70
70
  end
71
71
  end
@@ -14,15 +14,47 @@ class BeerRecipe::HopWrapper < BeerRecipe::Wrapper
14
14
  end
15
15
 
16
16
  def ibu
17
- @ibu ||= if @recipe.has_final_values? && @recipe.batch_size > 0 && amount > 0 && @record.time > 0
18
- BeerRecipe::Formula.new.tinseth(@recipe.batch_size, @record.time, @recipe.og, @record.alpha, amount)
19
- else
20
- 0
21
- end
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
@@ -26,7 +26,7 @@ class BeerRecipe::MiscWrapper < BeerRecipe::Wrapper
26
26
  if large_amount?
27
27
  "#{'%.0f' % amount}"
28
28
  else
29
- "#{'%.0f' % (1000 * amount)}"
29
+ "#{'%.2f' % (1000 * amount)}"
30
30
  end
31
31
  end
32
32
 
@@ -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
@@ -1,3 +1,3 @@
1
1
  module BeerRecipe
2
- VERSION = '0.4.7'
2
+ VERSION = '0.4.8'
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.7
4
+ version: 0.4.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Olle Johansson