Module: WeightFilter
- Defined in:
- lib/generators/liquid_cms/templates/vendor/plugins/liquid/performance/shopify/weight_filter.rb
Instance Method Summary collapse
Instance Method Details
#weight(grams) ⇒ Object
3 4 5 |
# File 'lib/generators/liquid_cms/templates/vendor/plugins/liquid/performance/shopify/weight_filter.rb', line 3 def weight(grams) sprintf("%.2f", grams / 1000) end |
#weight_with_unit(grams) ⇒ Object
7 8 9 |
# File 'lib/generators/liquid_cms/templates/vendor/plugins/liquid/performance/shopify/weight_filter.rb', line 7 def weight_with_unit(grams) "#{weight(grams)} kg" end |