beer_recipe 0.4.17 → 0.4.18
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_wrapper.rb +1 -1
- 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: 2642539038d3d602d78b6c1faab8d58e21dd7ab6
|
4
|
+
data.tar.gz: d8ebd40ae5789ccb19648c8c84debacaa924b962
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 91762cc479eecc95b8482e01cfaec257146d40105d82d551f1de811cbe2198099a8ef5a1bbb0f99aa1477a71187121f2a1b7eacc9e6215e3b248f3af6532d2df
|
7
|
+
data.tar.gz: cc039194f3709e454a42c7d681dbe80c4c5f62c9fa6f948dbdca515af9774f8eeb723d79aefbb2b65fcb2274ba52bb216bef358c07777427e358acc9c3a42aaa
|
@@ -96,7 +96,7 @@ class BeerRecipe::RecipeWrapper < BeerRecipe::Wrapper
|
|
96
96
|
end
|
97
97
|
|
98
98
|
def ibu
|
99
|
-
@ibu ||= @actual_values && calculated_ibu > 0 ? calculated_ibu : estimated_ibu
|
99
|
+
@ibu ||= @actual_values && calculated_ibu > 0 ? calculated_ibu : estimated_ibu || calculated_ibu
|
100
100
|
end
|
101
101
|
|
102
102
|
def strip_unit(value)
|
data/lib/beer_recipe/version.rb
CHANGED