Module: Beerxml::Unit::Weight
- Included in:
- Beerxml::Unit
- Defined in:
- lib/beerxml/unit.rb
Overview
Assumes earth gravity ;)
Class Method Summary collapse
Class Method Details
.included(k) ⇒ Object
105 106 107 108 109 110 |
# File 'lib/beerxml/unit.rb', line 105 def self.included(k) k.add_type('weight', 'kg', 'kilogram', 'kilograms') k.add('weight', 1000, 'g', 'gram', 'grams') k.add('weight', 2.204622, 'lb', 'pound', 'pounds', 'lbs') k.add('weight', 35.273961, 'oz', 'ounce', 'ounces') end |