h1. 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
h2. Installation
gem install dm-zone-types
h2. 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