Sha256: 775c725c940c49495d395272504c4a415b4aef58d6ee6867b9646dd02efa0d90

Contents?: true

Size: 488 Bytes

Versions: 63

Compression:

Stored size: 488 Bytes

Contents

# encoding: UTF-8
module MongoMapper
  module Plugins
    module Timestamps
      module ClassMethods
        def timestamps!
          key :created_at, Time
          key :updated_at, Time
          class_eval { before_save :update_timestamps }
        end
      end

      module InstanceMethods
        def update_timestamps
          now = Time.now.utc
          self[:created_at] = now if new? && !created_at?
          self[:updated_at] = now
        end
      end
    end
  end
end

Version data entries

63 entries across 63 versions & 9 rubygems

Version Path
mongo_mapper-unstable-2010.08.08 lib/mongo_mapper/plugins/timestamps.rb
mongo_mapper-unstable-2010.08.06 lib/mongo_mapper/plugins/timestamps.rb
mongo_mapper-unstable-2010.08.05 lib/mongo_mapper/plugins/timestamps.rb
mongo_mapper-unstable-2010.08.04 lib/mongo_mapper/plugins/timestamps.rb
mongo_mapper-unstable-2010.08.03 lib/mongo_mapper/plugins/timestamps.rb
mongo_mapper-unstable-2010.08.02 lib/mongo_mapper/plugins/timestamps.rb
mongo_mapper-unstable-2010.08.01 lib/mongo_mapper/plugins/timestamps.rb
mongo_mapper-unstable-2010.07.31 lib/mongo_mapper/plugins/timestamps.rb
mongo_mapper-unstable-2010.07.30 lib/mongo_mapper/plugins/timestamps.rb
mongo_mapper-unstable-2010.07.29 lib/mongo_mapper/plugins/timestamps.rb
mongo_mapper-unstable-2010.07.28 lib/mongo_mapper/plugins/timestamps.rb
mongo_mapper-unstable-2010.07.27 lib/mongo_mapper/plugins/timestamps.rb
thorsson-mongo_mapper-0.8.2 lib/mongo_mapper/plugins/timestamps.rb
mongo_mapper-unstable-2010.07.26 lib/mongo_mapper/plugins/timestamps.rb
mongo_mapper-unstable-2010.07.23 lib/mongo_mapper/plugins/timestamps.rb
mongo_mapper-unstable-2010.07.21 lib/mongo_mapper/plugins/timestamps.rb
mongo_mapper-unstable-2010.07.20 lib/mongo_mapper/plugins/timestamps.rb
mongo_mapper-unstable-2010.07.19 lib/mongo_mapper/plugins/timestamps.rb
mongo_mapper-unstable-2010.07.18 lib/mongo_mapper/plugins/timestamps.rb
mongo_mapper-unstable-2010.07.16 lib/mongo_mapper/plugins/timestamps.rb