Module: MeasuresHelper
- Defined in:
- app/helpers/measures_helper.rb
Instance Method Summary collapse
Instance Method Details
#inches_to_feetinches(inches) ⇒ Object
3 4 5 |
# File 'app/helpers/measures_helper.rb', line 3 def inches_to_feetinches(inches) return UnitConversions.inches_to_feetinches(inches) end |
#weight_with_pounds(weight) ⇒ Object
7 8 9 |
# File 'app/helpers/measures_helper.rb', line 7 def weight_with_pounds(weight) "#{weight.round(2)} lb" end |