Module: Toji::Processing::SteamedRice
- Defined in:
- lib/toji/processing/steamed_rice.rb
Instance Method Summary collapse
-
#steaming_ratio ⇒ Object
蒸米歩合.
-
#weight ⇒ Object
蒸米総重量.
Instance Method Details
#steaming_ratio ⇒ Object
蒸米歩合
16 17 18 19 |
# File 'lib/toji/processing/steamed_rice.rb', line 16 def steaming_ratio raw_weight = processing.soaked_rice.weight.to_f (weight.to_f - raw_weight) / raw_weight end |
#weight ⇒ Object
蒸米総重量
11 12 13 |
# File 'lib/toji/processing/steamed_rice.rb', line 11 def weight (elements || []).map(&:weight).sum end |