Class: TypedFields::DecimalType

Inherits:
Object
  • Object
show all
Defined in:
lib/typed_fields.rb

Instance Method Summary collapse

Instance Method Details

#parse(obj) ⇒ Object



19
20
21
22
# File 'lib/typed_fields.rb', line 19

def parse obj
  return nil if obj.nil?
  BigDecimal.new(obj)
end