Sha256: 53676ff9401bc9df63c9d1d12e8ced95b25f35254e6cc5df224ae4b730dfb19b
Contents?: true
Size: 757 Bytes
Versions: 2
Compression:
Stored size: 757 Bytes
Contents
require 'convert_unit/base' require 'convert_unit/pre_process/area/process' module ConvertUnit class Area < Base extend PreProcess::Area UNITS_SYMBOL = load_units_symbol UNITS = load_available_units CONVERSION_RATE = load_conversion_rate attr_accessor :value, :unit def initialize(value, unit) unit_symbol = Area::UNITS_SYMBOL[unit] || unit @conversion_rate_for_one_unit = Area::CONVERSION_RATE super(value, unit_symbol, Area::UNITS) end def to(c_unit) c_unit.downcase! unit_symbol = Area::UNITS_SYMBOL[c_unit] || c_unit raise ArgumentError, 'Impossible conversion type' unless Area::UNITS.include?(unit_symbol) Area.new(convert_to(unit_symbol), unit_symbol) end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
convert_unit-1.0.0 | lib/convert_unit/area.rb |
convert_unit-0.2.0 | lib/convert_unit/area.rb |