make a unit from an array [1, ‘mm’].unit => 1 mm
4 5 6
# File 'lib/rails_units/array.rb', line 4 def to_unit(other = nil) other ? Unit.new(self).to(other) : Unit.new(self) end