Class: DBF::ColumnType::Number
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
Methods inherited from Base
#blank_value, #decode, #initialize
Constructor Details
This class inherits a constructor from DBF::ColumnType::Base
Instance Method Details
#type_cast(value) ⇒ Object
46 47 48 49 50 |
# File 'lib/dbf/column_type.rb', line 46 def type_cast(value) return nil if value.empty? decimal.zero? ? value.to_i : value.to_f end |