Class: Superstore::Types::FloatType

Inherits:
ActiveModel::Type::Value
  • Object
show all
Defined in:
lib/superstore/types/float_type.rb

Instance Method Summary collapse

Instance Method Details

#cast_value(value) ⇒ Object



4
5
6
# File 'lib/superstore/types/float_type.rb', line 4

def cast_value(value)
  Float(value) rescue nil
end