class Coercible::Coercer::Hash
Public Instance Methods
to_date(value)
click to toggle source
# File lib/date_time_precision/compat/coercible.rb, line 3 def to_date(value) value.to_date end
to_datetime(value)
click to toggle source
# File lib/date_time_precision/compat/coercible.rb, line 7 def to_datetime(value) value.to_datetime end
to_time(value)
click to toggle source
# File lib/date_time_precision/compat/coercible.rb, line 11 def to_time(value) value.to_time end