Class: Ardm::Property::EpochTime

Inherits:
Time show all
Defined in:
lib/ardm/property/epoch_time.rb

Constant Summary

Constants inherited from Ardm::Property

INVALID_NAMES, Infinity, JSON, OPTIONS, PRIMITIVES, VISIBILITY_OPTIONS

Instance Attribute Summary

Attributes inherited from Ardm::Property

#allow_blank, #allow_nil, #coercion_method, #default, #dump_as, #index, #instance_variable_name, #load_as, #model, #name, #options, #reader_visibility, #required, #unique_index, #writer_visibility

Instance Method Summary collapse

Methods inherited from Object

#marshal, #to_child_key, #unmarshal

Methods inherited from Ardm::Property

accept_options, accepted_options, #allow_blank?, #allow_nil?, #assert_valid_value, #bind, demodulize, demodulized_names, descendants, determine_class, #field, find_class, #get, #get!, inherited, #inspect, #key?, #lazy?, #loaded?, options, primitive, #primitive, #primitive?, #properties, #required?, #serial?, #set, #set!, #set_default_value, #unique?, #valid?, #value_dumped?, #value_loaded?

Methods included from Equalizer

#equalize

Methods included from Subject

#default?, #default_for

Methods included from Assertions

#assert_kind_of

Instance Method Details

#dump(value) ⇒ Object



16
17
18
# File 'lib/ardm/property/epoch_time.rb', line 16

def dump(value)
  value.to_i if value
end

#load(value) ⇒ Object



8
9
10
11
12
13
14
# File 'lib/ardm/property/epoch_time.rb', line 8

def load(value)
  if value.kind_of?(::Numeric)
    ::Time.at(value.to_i)
  else
    value
  end
end

#typecast(value) ⇒ Object



20
21
22
23
24
25
26
27
# File 'lib/ardm/property/epoch_time.rb', line 20

def typecast(value)
  case value
    when ::Time               then value
    when ::Numeric, /\A\d+\z/ then ::Time.at(value.to_i)
    when ::DateTime           then datetime_to_time(value)
    when ::String             then ::Time.parse(value)
  end
end