dm-zone-types

Provides time zone aware data types for data mapper.

Whenver the property is set, it will be typecast to the Time.zone set in active support and be stored in the database as the timezone set in DataMapper::Zone::Types.storage_zone

Installation

gem install dm-zone-types

Usage


require 'dm-zone-types'

DataMapper::Zone::Types.storage_zone = "Melbourne" # default UTC

class MyClass
  include DataMapper::Resource

  property :id,         Serial
  property :some_time,  ZonedTime
end