Module: Structural::Model::TypeCasts
- Defined in:
- lib/structural/model/type_casts.rb
Defined Under Namespace
Classes: Cast, Date, Float, Identity, Integer, Money, Time
Class Method Summary collapse
Class Method Details
.cast(type, value) ⇒ Object
4 5 6 |
# File 'lib/structural/model/type_casts.rb', line 4 def self.cast(type, value) casts.fetch(type, Identity).new(value).cast end |