Class: HCast::Casters::DateTimeCaster

Inherits:
Object
  • Object
show all
Defined in:
lib/hcast/casters/datetime_caster.rb

Class Method Summary collapse

Class Method Details

.cast(value, attr_name, options = {}) ⇒ Object



3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# File 'lib/hcast/casters/datetime_caster.rb', line 3

def self.cast(value, attr_name, options = {})
  if value.is_a?(DateTime)
    value
  elsif value.is_a?(Time)
    value.to_datetime
  elsif value.is_a?(String)
    begin
      DateTime.parse(value)
    rescue ArgumentError => e
      raise HCast::Errors::CastingError, "is invalid datetime"
    end
  else
    raise HCast::Errors::CastingError, "should be a datetime"
  end
end