class BeerRecipe::Mash_stepWrapper

Public Instance Methods

formatted_infuse_amount() click to toggle source
# File lib/beer_recipe/mash_step_wrapper.rb, line 30
def formatted_infuse_amount
  "#{'%.2f' % infuse_amount}"
end
formatted_ramp_time() click to toggle source
# File lib/beer_recipe/mash_step_wrapper.rb, line 22
def formatted_ramp_time
  "#{'%.0f' % ramp_time}"
end
formatted_step_temp() click to toggle source
# File lib/beer_recipe/mash_step_wrapper.rb, line 18
def formatted_step_temp
  "#{'%.0f' % step_temp}"
end
formatted_step_time() click to toggle source
# File lib/beer_recipe/mash_step_wrapper.rb, line 26
def formatted_step_time
  "#{'%.0f' % step_time}"
end
infuse_amount() click to toggle source
Calls superclass method
# File lib/beer_recipe/mash_step_wrapper.rb, line 14
def infuse_amount
  super || 0
end
ramp_time() click to toggle source
Calls superclass method
# File lib/beer_recipe/mash_step_wrapper.rb, line 6
def ramp_time
  super || 0
end
step_temp() click to toggle source
Calls superclass method
# File lib/beer_recipe/mash_step_wrapper.rb, line 2
def step_temp
  super || 0
end
step_time() click to toggle source
Calls superclass method
# File lib/beer_recipe/mash_step_wrapper.rb, line 10
def step_time
  super || 0
end