Class: DBF::ColumnType::Number

Inherits:
Base
  • Object
show all
Defined in:
lib/dbf/column_type.rb

Constant Summary

Constants inherited from Base

Base::ENCODING_ARGS

Instance Attribute Summary

Attributes inherited from Base

#decimal, #encoding

Instance Method Summary collapse

Methods inherited from Base

#initialize

Constructor Details

This class inherits a constructor from DBF::ColumnType::Base

Instance Method Details

#type_cast(value) ⇒ Object



24
25
26
27
# File 'lib/dbf/column_type.rb', line 24

def type_cast(value)
  return nil if value.strip.empty?
  @decimal.zero? ? value.to_i : value.to_f
end