Class: DataMapper::Types::EpochTime

Inherits:
DataMapper::Type
  • Object
show all
Defined in:
lib/dm-types/epoch_time.rb

Class Method Summary collapse

Class Method Details

.dump(value, property) ⇒ Object



15
16
17
18
19
20
21
22
23
24
# File 'lib/dm-types/epoch_time.rb', line 15

def self.dump(value, property)
  case value
  when Integer
    value
  when Time
    value.to_i
  when DateTime
    Time.parse(value.to_s).to_i
  end
end

.load(value, property) ⇒ Object



6
7
8
9
10
11
12
13
# File 'lib/dm-types/epoch_time.rb', line 6

def self.load(value, property)
  case value
  when Integer
    Time.at(value)
  else
    value
  end
end